CString 转 std::string
char buf[100];
CString Str_Name = "test";
USES_CONVERSION;
strcpy(buf,W2A(Str_Name));
std::string std_Name = buf;
char buf[100];
CString Str_Name = "test";
USES_CONVERSION;
strcpy(buf,W2A(Str_Name));
std::string std_Name = buf;