codice:
public static bool IsNumeric(string val)
{
   try
   {
      int.Parse(val);
      return true;
   }
   cathc()
   {
      return false;
   }
}
:quote: