.NET:十进制到舍入字符串

发布于 2024-08-19 09:49:49 字数 123 浏览 4 评论 0原文

如果我有一个小数,如何获得具有两位小数的字符串版本?这不起作用:

Math.Round(myDecimal, 2).ToString("{0.00}");

If I have a decimal, how do I get a string version of it with two decimal places? This isn't working:

Math.Round(myDecimal, 2).ToString("{0.00}");

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

牵你的手,一向走下去 2024-08-26 09:49:49

不要使用大括号,它们用于使用 string.Format 将格式化值嵌入到较长的字符串中。使用这个:

myDecimal.ToString("0.00");

Don't use the curly brackets, they are for embedding a formatted value in a longer string using string.Format. Use this:

myDecimal.ToString("0.00");
撩起发的微风 2024-08-26 09:49:49

也许我错了,但我尝试过 myDecimal.ToString(); 并成功了。

Maybe i'm wrong, but i've tried myDecimal.ToString(); and it worked.

不醒的梦 2024-08-26 09:49:49

假设 myDecimalSystem.Decimal,则 Math.Round(myDecimal, 2).ToString(); 将显示两位精度的十进制数字,就像你想要的那样,没有任何格式字符串(除非你的数字的绝对值大于 10^27-1)。这是因为 decimal 数据类型保留了数字的完整精度。也就是说1m1.0m1.00m的存储方式不同,显示也会不同。

请注意,floatdouble 并非如此。 1f1.0f1.00f 的存储和显示方式与 1d1.0 相同d1.00d

由于必须在运行时解析格式字符串,因此在大多数情况下,对于这样的代码,我可能会省略它。

Assuming myDecimal is a System.Decimal, then Math.Round(myDecimal, 2).ToString(); will display two decimal digits of precision, just as you want, without any format string (unless the absolute value of your number is greater than 10^27-1). This is because the decimal datatype retains full precision of the number. That is to say that 1m, 1.0m, and 1.00m are all stored differently and will display differently.

Note that this is not true of float or double. 1f, 1.0f, and 1.00f are stored and display identically, as do 1d, 1.0d, and 1.00d.

Since the format string must be parsed at runtime, I would probably omit it for code like this in most cases.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文