Simple But Still Annoying
'CString' to 'std::string'
Code:
CString cs("Hello");
std::string s((LPCTSTR)cs);
'std::string' to 'CString':
Code:
std::string s("Hello");
CString cs(s.c_str());
C++ C# Lingo Mojo and WebOS and QT assistance for those who hate reading manuals. Featuring the amzing Diet Control Application for Palm Pre
Simple But Still Annoying
'CString' to 'std::string'
Code:
CString cs("Hello");
std::string s((LPCTSTR)cs);
std::string s("Hello");
CString cs(s.c_str());
0 תגובות:
Post a Comment