标签: c#-4.0 math rounding
如何舍入货币价值?
我基本上有以下代码,但它并没有真正做我想做的事。
double amount = 1.236356789; Math.Round(amount, 2, MidpointRounding.ToEven);
我希望输出为1.23。