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