real class : Ceiling() method
Description
Gets an new instance of the real type that has the smallest integral value that is greater than or equal to the instance value.
Syntax
realInstance.Ceiling()
Arguments
None
Return value
Class | Description |
real | An new instance of the real type that has the smallest integral value that is greater than or equal to the instance value. |
Sample code
//anyReal is a instance of real type.
real newInstance = anyReal.Ceiling();
Notes
It's a wrapper of the System.Math.Ceiling(Double).