int class : Max getter
Description
Returns the maximum value of the int type.
Syntax
intInstance.Max
Arguments
None
Return value
Class | Description |
int | The maximum value of the int type. |
Sample code
//anyInt is a instance of int type.
int maximum = anyInt.Max;
Notes
It's a wrapper of the System.Int32.MaxValue.
This getter is a constant. Please note that is not affected by the value of the calling instance.