I have heard that using exception trapping is not a recommended practice for number testing.
For example:
bool isnumeric
try
{
int i = int.parse(textbox1.text);
isnumeric = true;
}
catch {isnumenric=false}
Is there some other way that I could test for numbers in C#?
