gpt4 book ai didi

c# - decimal.Round 和 Math.Round 之间的区别

转载 作者:可可西里 更新时间:2023-11-01 08:10:18 26 4
gpt4 key购买 nike

C# 中的 Math.Round 和 decimal.Round 函数有什么区别?

最佳答案

没有区别。

Math.Round(decimal)源代码:

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);
}

关于c# - decimal.Round 和 Math.Round 之间的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38442692/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com