UnicodeEncoding.CharSize 字段

定义

表示 Unicode 字符大小(以字节为单位)。 此字段为常数。

public: int CharSize = 2;
public const int CharSize = 2;
val mutable CharSize : int
Public Const CharSize As Integer  = 2

字段值

Value = 2

示例

以下示例演示如何返回 并显示 的值 CharSize

using namespace System;
using namespace System::Text;
int main()
{
   Console::WriteLine( "Unicode character size: {0} bytes", UnicodeEncoding::CharSize );
}
using System;
using System.Text;

class UnicodeEncodingExample {
    public static void Main() {
        Console.WriteLine(
            "Unicode character size: {0} bytes",
            UnicodeEncoding.CharSize
        );
    }
}
Imports System.Text

Class UnicodeEncodingExample
    
    Public Shared Sub Main()
        Console.WriteLine("Unicode character size: {0} bytes", UnicodeEncoding.CharSize)
    End Sub
End Class

注解

此字段的值是一个 32 位带符号常量,值为 2。

适用于