TechResearch
Programmer
What does the L before a string makes to it?
Does it set it to Unicode string?
I have a string strMyString,
and I have to pass it to a function that expects a L"string"
how do I convert strMyString to L"string"
I can't do
strMyString = L"string"
because I get this string from other function
any insights?
Does it set it to Unicode string?
I have a string strMyString,
and I have to pass it to a function that expects a L"string"
how do I convert strMyString to L"string"
I can't do
strMyString = L"string"
because I get this string from other function
any insights?