Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在浏览一些旧的 VB6 代码,我遇到了如下语句 -
TempArray() = StrConv(PassedString, vbFromUnicode)
这是什么意思?
它接受一个 unicode 字符串(VB 中的任何字符串都是 Unicode)并将其转换为字节数组,使用非 unicode 程序的当前系统代码页。
在该代码页中找不到的字符将替换为问号 ( ?)。
?