Decimal Math.Ceiling Method
Returns the smallest integral value that is greater than or equal to the
specified decimal number.
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
The smallest integral value that is greater than or equal to value. Note that this method returns a System.Decimal instead of an integral type.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public static decimal Ceiling(
decimal value
)
Parameters
- value Decimal
- A decimal number.
Return Value
DecimalThe smallest integral value that is greater than or equal to value. Note that this method returns a System.Decimal instead of an integral type.