C#中decimal保留2位有效小数的方法

可以使用Math.Round方法

decimal numDecimal = 12.33471M;

numDecimal = Math.Round(numDecimal, 2);

你可能感兴趣的