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