public bool isnumeric(string str)
{ char[] ch=new char[str.Length]; ch=str.ToCharArray(); for (int i = 0; i < ch.Length;i++ ) { if (ch[i] < 48 || ch[i] > 57) { return false; } } return true;}本文共 261 字,大约阅读时间需要 1 分钟。
public bool isnumeric(string str)
{ char[] ch=new char[str.Length]; ch=str.ToCharArray(); for (int i = 0; i < ch.Length;i++ ) { if (ch[i] < 48 || ch[i] > 57) { return false; } } return true;}转载于:https://www.cnblogs.com/zhang123/archive/2013/03/22/2974627.html