CString To Wchar*

简单粗暴的转换方式

  • CString to Wchar*
CString buf;
WCHAR* goodName = (WCHAR*)((LPCSTR)buf);

你可能感兴趣的:(VC++学习之路)