Math::Ceiling Method (Decimal)
Returns the smallest integral value that is greater than or equal to the specified decimal number.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- d
- Type: System::Decimal
A decimal number.
Return Value
Type: System::DecimalThe smallest integral value that is greater than or equal to d. Note that this method returns a Decimal instead of an integral type.
The behavior of this method follows IEEE Standard 754, section 4. This kind of rounding is sometimes called rounding toward positive infinity. In other words, if d is positive, the presence of any fractional component causes d to be rounded to the next highest integer. If d is negative, the rounding operation causes any fractional component of d to be discarded. The operation of this method differs from the Floor(Decimal) method, which supports rounding toward negative infinity.
The following example illustrates the Math::Ceiling(Decimal) method and contrasts it with the Floor(Decimal) method.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.