EFileTahi-A
Contributor
Ok, what I want to do is so simple that I can't do it...
I have a text box containing the value "7.5" which I need convert it to a double value:
What does this do? It converts the "7.5" to "75.0", and I want it to be 7.5!!!
Help?
I have a text box containing the value "7.5" which I need convert it to a double value:
Code:
double d = 0.0
d = Convert.ToDouble(textBox.Text)
What does this do? It converts the "7.5" to "75.0", and I want it to be 7.5!!!
Help?
Last edited: