hi,
I want to convert string to double.
Dim str As String = "1.5432"
Dim num As Double = Convert.ToDouble(str)
num should be 1.5432 but i get 15432
How can i get as it is in the string?
thanks in advance.
Best Regards
I want to convert string to double.
Dim str As String = "1.5432"
Dim num As Double = Convert.ToDouble(str)
num should be 1.5432 but i get 15432
How can i get as it is in the string?
thanks in advance.
Best Regards