decimal四舍五入的方法

public static decimal MyDecimalRound(decimal d, int decimals)
{
     d = d + 0.000000000000001m;
     return Decimal.Round(d, decimals);
}

posted on 2009-07-10 16:12  欣路历程  阅读(1188)  评论(0编辑  收藏  举报

导航