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.
Available since 8
.NET Framework
Available since 2.0
Portable Class Library
Supported in: portable .NET platforms
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1