The MaxValue field of UInt64 Struct is used to represent the maximum value of the 64-bit unsigned long 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 18446744073709551615. Its hexadecimal value is
0xFFFFFFFFFFFFFFFF. It is used to avoid the
OverflowException at runtime.
Syntax:
public const ulong MaxValue = 18446744073709551615;
Return Value: This field always returns 18446744073709551615.
Example:
Output:
Maximum Value is: 18446744073709551615
Not equal..!!
Type of var1 is: UInt64
Reference: