我有一个大小为 2 的字节数组,其中包含来自基本多语言平面的单个 UTF-16LE 编码的 Unicode 字符。
BYTE b[2];
memset(b,0,2);
b[0] = 0x31;
b[1] = 0x00; //In future this byte contain info when unicode use , but now 0x00.
现在我想将它存储在CString
or中TCHAR
。
编辑
我确实用过
TCHAR tch = (TCHAR)b; //tch = 'X'
这怎么可能?