Hi,
I have 17000.00 as String and i want to convert it to double. When i use like below i get 170000.0.
Dim str As String = "17000.00"
Thanks in advance.
Best Regards
I have 17000.00 as String and i want to convert it to double. When i use like below i get 170000.0.
Dim str As String = "17000.00"
VB.NET:
Dim num As Double = System.Convert.ToDouble(str)
Thanks in advance.
Best Regards