繁体   English   中英

如果有任何格式,我如何格式化只包括小数

[英]How do I format to only include decimal if there are any

如果我只想显示小数,如果它不是整数,那么格式化小数的最佳方法是什么。

例如:

decimal amount = 1000M
decimal vat = 12.50M

格式化时我想:

Amount: 1000 (not 1000.0000)
Vat: 12.5 (not 12.50)
    decimal one = 1000M;
    decimal two = 12.5M;

    Console.WriteLine(one.ToString("0.##"));
    Console.WriteLine(two.ToString("0.##"));

由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”格式说明符类似,但如果更紧凑则可以使用科学记数法(请参阅标准数字格式字符串 )。

从而:

decimal d = 0.0000000000000000000012M;
Console.WriteLine(d.ToString("G"));  // Uses fixed-point notation
Console.WriteLine(d.ToString("G29"); // Uses scientific notation

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM