I have a std::string. I need to convert this std:string to a Cstring.
std::string
std:string
Cstring
I try to use the .c_str() but it\'s only fo
.c_str()
Unicode CString's constructor accepts char* so you can do this:
CString
char*
std::string str = "string"; CString ss(str.c_str());