I have a input field that is supposed to take numbers only.
How can I validate the string?
Would this be ok:
string s = "12345";
double num;
bool isNum = double.TryParse(s, out num);
Or does .Net have a solution for this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
What you’ve done looks correct.
You could also create an extension method to make it easier:
So then you could do: