使用数字格式字符串截断数字
是否可以在 .NET 中使用数字格式字符串截断数字?目前,我使用 N0
作为 double
,但这对值进行四舍五入。由于库限制,我必须使用格式字符串。
Is it possible to truncate a number using numeric format strings in .NET? Currently I am using N0
for a double
but this rounds the value. Due to a library restriction I must use a format string.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来这是不可行的,因为:
"D"
仅支持整数类型"N"
回合“0”
回合“#”
回合It seems that this is not doable because:
"D"
is only supported for integral types"N"
rounds"0"
rounds"#"
rounds