DoubleExtension.Ceiling C# (CSharp) Method

Ceiling() public static method

Returns the smallest integral value that is greater than or equal to the specified double-precision floating- point number.
public static Ceiling ( double @this ) : int
@this double
return int
    public static int Ceiling(this double @this) => Convert.ToInt32(Math.Ceiling(@this));