I use contactsreader.dllto import Gmail contacts. One of my methods has a parameter out. I'm doing it:
Gmail gm = new Gmail();
DataTable dt = new DataTable();
string strerr;
gm.GetContacts("chendur.pandiya@gmail.com", "******", true, dt, strerr);
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 the parameters out?
source
share