real class : Min getter

Description

Returns the minimum value of the real type.

Syntax

realInstance.Min

Arguments

None

Return value

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

Links for reference

Copyright © Rice All rights reserved.