日期:2014-05-17 浏览次数:20911 次
private bool isNumberic(string message) { Regex rex =new Regex(@"^\d+$"); return rex.IsMatch(message); }