我正在使用contactsreader.dll
导入我的 Gmail 联系人。我的一种方法有out
参数。我正在这样做:
Gmail gm = new Gmail();
DataTable dt = new DataTable();
string strerr;
gm.GetContacts("chendur.pandiya@gmail.com", "******", true, dt, strerr);
// It gives invalid arguments error..
我的 Gmail 课程有
public void GetContacts(string strUserName, string strPassword,out bool boolIsOK,
out DataTable dtContatct, out string strError);
我是否传递了正确的out
参数值?