How can I check if a string is a number?

Viewed 147481

I'd like to know on C# how to check if a string is a number (and just a number).

Example :

141241   Yes
232a23   No
12412a   No

and so on...

Is there a specific function?

25 Answers
Related