Hi All,
I am getting the same return value for the following 2 statements.
CString str1 = _T("Hi Hello");
int nPos = str1.Find(_T("")); //return value nPos =0;
nPos = str1.Find(_T("H"));//return value nPos=0
Are the above two statements equal ?
Thanks