Parse a floating-point value with a thousands separator
Module Example
Public Sub Main()
Dim value As String
Dim number As Double
value = "1,111.57"
If Double.TryParse(value, number) Then
Console.WriteLine(number)
Else
Console.WriteLine("Unable to parse '{0}'.", value)
End If
End Sub
End Module
Related examples in the same category