我有一个关于字符串的简单问题。考虑以下代码:

Dim S1 as String = "abc"

S1 的编码是什么?那是 UTF-8 还是取决于用户 Windows 本地设置?

最佳答案

System.Stringdocumented 以在内部使用 UTF-16。

关于.net - VB.NET 下字符串的默认编码是什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10350017/

10-09 03:55