gpt4 book ai didi

c# - 如何使用 C# 在字符串中添加尾随零?

转载 作者:太空宇宙 更新时间:2023-11-03 10:51:40 27 4
gpt4 key购买 nike

我有带小数的金额(300.11 和 9801.98),我将它们导出到 Excel 中,一切正常。

但有时我的金额带有尾随零,我想在导出时保留这些零?例如,当导出到 Excel 时,300.00 变为 300。我怎样才能解决这个问题?

这是导出发生之前的代码。

AmountCCC 是 double 类型。

row.Amount = row.AmountCCC.ToString(CultureInfo.InvariantCulture);

在屏幕截图中查看记录是如何导出的。

enter image description here

最佳答案

你可以使用N2

row.AmountCCC.ToString("N2", CultureInfo.InvariantCulture);

The Numeric ("N") Format Specifier

关于c# - 如何使用 C# 在字符串中添加尾随零?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21232075/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com