I'm doing a system on C# and everything is going ok, but I'm having some troubles when I want convert a textbox value to double, for example: when I enter 123.40 the result of convert this to Double is 12340. Here is my code:
Double.Parse(txtPay.Text)
And if I try with:
Convert.ToDouble(txtPay.Text)
the result is the same