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: