Subscribe to Code Snippets
public bool ValidateInt(object Data) { try { if (Data != null) { int.Parse(Data.ToString()); return true; } } catch (Exception Exception) { return false; } }
Hall of Fame Twitter Terms of Service Privacy Policy Contact Us Archives Tell A Friend