I have a problem with multibyte char strings. I have simplified my problem as below:
std::wstring str = L"multıbyte test string";
std::wofstream f;
f.open("F:\\dump.txt");
f << str;
f.close();
and the dump file's content is : "mult"
Why does it cuts the remaining part of str altough i have used wstring and wofstream?
Thanks