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