c# – decimal.Round和Math.Round之间的差异

前端之家收集整理的这篇文章主要介绍了c# – decimal.Round和Math.Round之间的差异前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
C#中Math.Round和decimal.Round函数有什么区别?

解决方法

没有区别.

Math.Round(十进制)源代码

public static Decimal Round(Decimal d) {
        return Decimal.Round(d,0);
}

Reference Source .NET Framework

编辑:

为了澄清,decimal.cs类的源代码

public static Decimal Round(Decimal d) {
        return Round(d,0);
}
原文链接:https://www.f2er.com/csharp/99546.html

猜你在找的C#相关文章