VB.NET 中 IsNumeric() 的结果错误
我在 VB.NET 中有一个函数,它循环遍历值并尝试在 IsNumeric
为 True 时将其转换为十进制,
Dim Value As String
If IsNumeric(Value) = True Then
Rate = CType(Value, Decimal) <--- bombing here
End If
我发现当该函数收到值 603E43 IsNumeric 由于某种原因评估为 True,然后在转换时发生爆炸。在这种情况下,为什么
IsNumeric
为 true?
I have a function in VB.NET that loops through values and attempts to convert it to a decimal if IsNumeric
is True,
Dim Value As String
If IsNumeric(Value) = True Then
Rate = CType(Value, Decimal) <--- bombing here
End If
I've found that when the function receives the value 603E43 IsNumeric
evaluates to True for some reason and then bombs on the conversion. Why would IsNumeric
be true in this case?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅 http://support.microsoft.com/kb/329488
IsNumeric 返回 true(如果可以)转换为 double,这对于 603E43 来说是正确的
但是,该值大于小数所能容纳的值,
您可以使用 Decimal.TryParse 函数作为替代方案。看
http://msdn.microsoft.com/en-us/library/9zbda557.aspx
See http://support.microsoft.com/kb/329488
IsNumeric returns true if it can be converted to a double which is true for 603E43
The value is however larger than what a decimal can hold
You could use the Decimal.TryParse funcion as a working alternative. See
http://msdn.microsoft.com/en-us/library/9zbda557.aspx