using System.Text.RegularExpressions;
static bool isNumeric(string strString){ return Regex.IsMatch(strString, @"^\d+$");}
Login to post response