Tagged Questions

2
votes
4answers
1k views

What is taking IsNumeric() so long in .NET?

Was doing some benchmarking with IsNumeric today and compared it to the following function: Private Function IsNumeric(ByVal str As String) As Boolean If String.IsNullOrEmpty(Str) Then Return ...
1
vote
1answer
267 views

Wrong result from IsNumeric() in VB.NET

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, ...
0
votes
3answers
351 views

Any Reason Why IsNumeric() Fails On A Number?

I currently have this line of code which has been working for the past 6 months: If IsNumeric(txtProductID.Text) Then ...do stuff Else Dim msg As String = "Error!" End If All of the sudden, ...