Posts by David Coopermine • 31 points
1 post
- 
		3 votes1 answer597 viewsQ: convert a string to Vb.net - Convert.toDoubleI’m trying to convert a string in double Vb.net: Dim result as double Dim ValueString as string = "-42.1942339" result = Convert.ToDouble(ValueString) Console.WriteLine(result) I’m getting the…