使用至少 2 位和最多 6 位格式化小数
为了满足规范,我需要使用以下规则格式化十进制值:
- 所有值必须至少有两位小数,最多有六位。
示例:
Value Formatted
1 1.00
1.1 1.10
1.1234 1.1234
1.123456 1.123456
1.12345678 1.123456
我想我会使用一个条件来结束,但我想知道是否有一个格式字符串可以做到这一点。
To meet a specification I need to format a decimal value with the rule:
- All values must have at least two decimal places and at most six.
Example:
Value Formatted
1 1.00
1.1 1.10
1.1234 1.1234
1.123456 1.123456
1.12345678 1.123456
I guess I'll end using a condition, but I wonder if there is a format string which can do this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过:
.ToString("0.00####");
Have you tried:
.ToString("0.00####");