C++ String: How to convert between 'CString' and 'std::string'?
Q: How to convert between 'CString' and 'std::string'? A: 'CString' to 'std::string': CString cs("Hello"); std::string s((LPCTSTR)cs); ... If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register or Lo...