VOOZH about

URL: https://www.geeksforgeeks.org/c-sharp/uint16-maxvalue-field-in-c-sharp-with-examples/

⇱ UInt16.MaxValue Field in C# with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

UInt16.MaxValue Field in C# with Examples

Last Updated : 11 Jul, 2025
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:
Comment
Article Tags:

Explore