将MidpointRounding.AwayFromZero设置为默认舍入方法
本文关键字:默认 舍入 方法 设置 MidpointRounding AwayFromZero | 更新日期: 2023-09-27 17:57:53
我正在做一个应用程序,我需要始终使用MidpointRounding.AwayFromZero对数字进行舍入,但每次进行舍入时,我都必须编写以下语句
Math.Round(xxx, ddd, MidpointRounding.AwayFromZero);
有没有办法将MidpointRounding.AwayFromZero设置为方法Math.Round(…)的默认方式?
有没有办法将MidpointRounding.AwayFromZero设置为方法Math.Round(…)的默认方式?
不,没有。
但是,您可以编写一个助手方法,该方法在任何使用MidpointRounding.AwayFromZero
的地方都可以使用。
public static class MathHelper
{
public static double Round(double value, int digits)
{
return Math.Round(value, digits, MidpointRounding.AwayFromZero);
}
}