영어로 읽기

다음을 통해 공유


UInt16.MaxValue 필드

정의

UInt16의 가능한 최대값을 나타냅니다. 이 필드는 상수입니다.

C#
public const ushort MaxValue = 65535;

필드 값

Value = 65535

예제

다음 예에서는 및 속성을 사용하여 UInt16.MaxValue 값을 값으로 Int32 변환 UInt16 하기 전에 형식의 UInt16 범위에 있는지 확인 UInt16.MinValue 합니다. 이렇게 하면 정수 값이 형식의 UInt16 범위에 없는 경우 변환 작업이 을 throw OverflowException 하지 않습니다.

C#
int integerValue = 1216; 
ushort uIntegerValue;

if (integerValue >= ushort.MinValue & integerValue <= ushort.MaxValue)
{
   uIntegerValue = (ushort) integerValue;
   Console.WriteLine(uIntegerValue);
} 
else
{
   Console.WriteLine("Unable to convert {0} to a UInt16t.", integerValue);
}

설명

이 상수의 값은 65535입니다. 즉, 16진수 0xFFFF.

적용 대상

제품 버전
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 2.0, 2.1
UWP 10.0

추가 정보