我想使用 Math.Round
函数来做到这一点
最佳答案
下面是一些例子:
decimal a = 1.994444M;
Math.Round(a, 2); //returns 1.99
decimal b = 1.995555M;
Math.Round(b, 2); //returns 2.00
您可能还想查看具有以下过载的银行家四舍五入/舍入到偶数:
Math.Round(a, 2, MidpointRounding.ToEven);
有关于它的更多信息 here 。
关于c# - 在 C# 中如何将数字四舍五入到两位小数?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/257005/