The MaxValue field or property of Int32 Struct is used to represent the maximum value of Int32. The value of this field is constant means that the user cannot change the value of this field. The value of this field is
2147483647. Its hexadecimal value is
0x7FFFFFFF. It is used to avoid the
OverflowException while converting to an
Int32 value.
Syntax:
public const int MaxValue = 2147483647;
Return Value: This field always returns 2147483647.
Example:
Output:
Maximum Value is: 2147483647
Conversion is Possible.
Conversion is Possible.
Not Possible
Reference: