Unicode下的CString与String之间的相互转换
1. CString to StringString strA=(LPCSTR)CStringA(cstrA);2. String to CStringCString cstrA=(CString)strA.c_str();