陈斌彬的技术博客

Stay foolish,stay hungry

Math-Celing方法

//
    // 摘要:
    //     返回大于或等于指定的十进制数的最小整数。
    //
    // 参数:
    //   d:
    //     一个小数。
    //
    // 返回结果:
    //     大于或等于 d 的最小整数。
    public static decimal Ceiling(decimal d);