// release build is ok, only debug build std::wostringstream stLog; stLog << L"test"; // sometime gabage char in debugging view or string. // add to 'std::ends' stLog << L"test" << std::ends; // caution: solution but write null char in file. // convet to 'std::wstring' std::wstring strValue = stLog.str(); // solution... but, Debugger string --;;;; // check below setlocale(LC_ALL, "");
alexnetster@gmail.com/ 나중에 재사용시 흔적을 남겨 찾기 쉽게 하는 것이 목적/ 최대한 간단하게.