Check if integer

  • Thread starter Thread starter Mr. X.
  • Start date Start date
M

Mr. X.

How can I check IsNumeric, but not through an exception if there is (just
return true or false) ?
(Not using Microsoft.VisualBasic).

Thanks :)
 
How can I check IsNumeric, but not through an exception if there is
(just return true or false) ?
(Not using Microsoft.VisualBasic).

int.TryParse is one possibility.

Arne
 
Back
Top