vb.net – 将字符串转换为双VB

前端之家收集整理的这篇文章主要介绍了vb.net – 将字符串转换为双VB前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在VB中有一个有效的方法来检查一个字符串是否可以转换为双精度?

我目前正在尝试将字符串转换为double,然后查看是否引发异常。但这似乎正在放缓我的申请。

Try
    ' if number then format it.
    current = CDbl(x)
    current = Math.Round(current,d)
    Return current
Catch ex As System.InvalidCastException
    ' item is not a number,do not format... leave as a string
    Return x
End Try
如果您使用的是.NET 1.1 / 2.0 / 3.0 / 3.5 / 4.0 / 4.5,请尝试查看Double.TryParse()
原文链接:https://www.f2er.com/vb/256010.html

猜你在找的VB相关文章