json 如何将小数点四舍五入到小数点后3位?

emeijp43  于 2023-04-22  发布在  其他
关注(0)|答案(2)|浏览(227)

我有一个可变的结果。它包含每次不同的值。它是十进制数。我如何四舍五入或只显示3个小数位?
验证码:

var result = amount * exchangeRate1[fromCurrency] / exchangeRate2[toCurrency];
pw136qt2

pw136qt21#

如果要显示3位小数,则必须将值格式化为字符串

string val = Math.Round(result,3).ToString("0.000"); // 2.000

如果只使用“圆形”

result = Math.Round(result,3) // 2

如果您结果小数点后少于3位,则将显示少于3位小数。

bxjv4tth

bxjv4tth2#

试试这个:

Math.Round(result, 3);

相关问题