UnicodeEncoding.CharSize Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents the Unicode character size in bytes. This field is a constant.
public: int CharSize = 2;
public const int CharSize = 2;
val mutable CharSize : int
Public Const CharSize As Integer = 2
Field Value
Value = 2Examples
The following example demonstrates how to return the value of CharSize and display it.
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
Remarks
The value of this field is a 32-bit signed constant with a value of 2.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.