将“6.00000000000000”转换为最简单的方法是什么为整数属性
我有一个带有年龄属性 (int) 的 Person 对象,
我正在解析一个文件,该值的格式为“6.00000000000000”,
在 C# 中将此字符串转换为 int 的最佳方法是什么
Convert.ToInt32() or Int.Parse() gives me an exception:
?正确的格式。
i have an Person object with an age property (int)
i am parsing a file and this value is coming in this format "6.00000000000000"
what is the best way to convert this string into an int in C#
Convert.ToInt32() or Int.Parse() gives me an exception:
Input string was not in a correct format.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这取决于您对输入数据始终遵循此格式的信心。以下是一些替代方案:
编辑:在注释后将
double
更改为decimal
。It depends on how confident you are that the input-data will always adhere to this format. Here are some alternatives:
EDIT: Changed
double
todecimal
after comment.