Hello,
Following piece of code produces errors in compiling. Does anyone have an idea why? Playing with that for hours and still can't get it. Users Guide says that escaping is working fine for unicode...
string a
wstring b
a = "abc \"def\" ghi"
b = L"abc \"def\" ghi"
Why escaping of quote sign does not work for unicode string?
Thank you.