real class : Max getter

Description

Returns the maximum value of the real type.

Syntax

realInstance.Max

Arguments

None

Return value

ClassDescription
realThe 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.

Links for reference

Copyright © Rice All rights reserved.