我有带小数的金额(300.11和9801.98),我将其导出为Excel,一切都很好。
但是有时我的金额中有尾随零,我想在导出时保留那些零吗?例如,导出到Excel时300.00变为300。我怎样才能解决这个问题?
这是导出之前的代码。
AmountCCC的类型为double。
row.Amount = row.AmountCCC.ToString(CultureInfo.InvariantCulture);
在屏幕截图中查看如何导出记录。
最佳答案
您可以使用N2
row.AmountCCC.ToString("N2", CultureInfo.InvariantCulture);
The Numeric ("N") Format Specifier
关于c# - 如何使用C#在字符串中添加尾随零?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21232075/