C# UInt16 MaxValue
Description
UInt16 MaxValue
represents the largest possible value
of UInt16. This field is constant.
Syntax
UInt16.MaxValue
has the following syntax.
public const ushort MaxValue
Example
/*from w w w. ja v a 2s . co m*/
using System;
public class MainClass{
public static void Main(String[] argv){
System.Console.WriteLine(UInt16.MaxValue);
}
}
The code above generates the following result.