The MaxValue field of UInt16 Struct is used to represent the maximum value of the 16-bit unsigned integer. The value of this field is constant means that the user cannot change the value of this field. The value of this field is 65535. Its hexadecimal value is
0xFFFF. It is used to avoid the
OverflowException if the integer value is not in the range of the
UInt16 type.
Syntax:
public const ushort MaxValue = 65535;
Return Value: This field always returns 65535.
Example:
Output:
Maximum Value is: 65535
Not Possible
Conversion is Possible.
Not Possible
Not Possible
Reference: