VB.NET 中 IsNumeric() 的结果错误

发布于 2024-11-25 11:33:48 字数 345 浏览 4 评论 0原文

我在 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 技术交流群。

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

发布评论

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

评论(1

巾帼英雄 2024-12-02 11:33:48

请参阅 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

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