Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

UnicodeEncoding::CharSize Field

 

Represents the Unicode character size in bytes. This field is a constant.

Namespace:   System.Text
Assembly:  mscorlib (in mscorlib.dll)

public:
literal int CharSize

Field Value

Type: System::Int32

The value of this field is a 32-bit signed constant with a value of 2.

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 );
}

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft