判断字符串是否是数字[C#]
private bool isNumberic(string message) { Regex rex =new Regex(@"^\d+$"); return rex.IsMatch(message); }