I am using contactsreader.dll to import my gmail contacts... One of my method has out parameter... I am doing this,
Gmail gm = new Gmail();
DataTable dt = new DataTable();
string strerr;
gm.GetContacts("
chendur[email protected]", "******", true, dt,strerr);
// It gives invalid arguments error..
and my gmail class has,
public void GetContacts(string strUserName, string strPassword,out bool boolIsOK,
out DataTable dtContatct, out string strError);
Am i passing the correct values for out parameters...