如果我只想显示小数,如果它不是整数,那么格式化小数的最佳方法是什么。
例如:
decimal amount = 1000M
decimal vat = 12.50M
格式化后我想要:
Amount: 1000 (not 1000.0000)
Vat: 12.5 (not 12.50)
答案 0 :(得分:23)
decimal one = 1000M;
decimal two = 12.5M;
Console.WriteLine(one.ToString("0.##"));
Console.WriteLine(two.ToString("0.##"));
答案 1 :(得分:21)
由user1676558更新了以下评论
试试这个:
decimal one = 1000M;
decimal two = 12.5M;
decimal three = 12.567M;
Console.WriteLine(one.ToString("G"));
Console.WriteLine(two.ToString("G"));
Console.WriteLine(three.ToString("G"));
对于十进制值,“G”格式说明符的默认精度为29位,省略精度时始终使用定点表示法,因此这与“0。#####”相同########################”。
与“0。##”不同,它将显示所有有效小数位(小数值不能超过29位小数)。
“G29”格式说明符类似,但如果更紧凑,可以使用科学记数法(参见Standard numeric format strings)。
因此:
decimal d = 0.0000000000000000000012M;
Console.WriteLine(d.ToString("G")); // Uses fixed-point notation
Console.WriteLine(d.ToString("G29"); // Uses scientific notation