From basic string:
Code: Select all
std::string other("foobar");
const std::wstring& ws = std::wstring(other.begin(), other.end());
const wchar_t* const wchr = wc.c_str();
Code: Select all
std::string other("foobar");
const std::wstring& ws = std::wstring(other.begin(), other.end());
const wchar_t* const wchr = wc.c_str();