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