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?
603E43is a semi-standard numerical representation of a floating point value, in particular:603*10^43. I have no idea howCTypeworks (as I don't use VB.NET ;-), but in C# I'd might usedecimal.TryParse.IsNumericis likely more related to the SQL Server "numeric" rules, which also include leading dollar signs, etc. I can't seem to find any official "full" rules. – user166390 Jul 21 '11 at 0:37= Truepart. Just sayIf IsNumeric(Value) Then ...– ja72 Jul 21 '11 at 0:50