In my limited experience, I\'ve been on several projects that have had some sort of string utility class with methods to determine if a given string is a number. The idea h
Personally I would do this if you really want to simplify it.
public boolean isInteger(string myValue) { int myIntValue; return int.TryParse(myValue, myIntValue) }