How to convert from a TDesC8 to a TDesC16?
TDesC8 ->TDesC16 conversion
You can convert it element by element by converting from a char to an int
See thread
Beast wrote:You can convert it element by element by converting from a char to an intSee thread
No need for converting individual chars... 😉
Also, it is not guarenteed that something like this will surely work.
The safest way is to use the CnvUtfConverter class.
It has static methods that will do the job for you. (ASCII <=> UTF7 which is 8bit 😉)