public bool CheckIsNumber(string s)
{
char[] tmp = s.ToCharArray();
for (int i = 0; i < tmp.Length; i++)
{
if ((int)tmp[i] < 48 || (int)tmp[i] > 57)
return false;
}
return true;
}
實做:
if (CheckIsNumber(textBox2.Text) == true)
{
MessageBox.Show("你輸入的是 純數字");
}
else
{
MessageBox.Show("請輸入 數字!!");
}
轉自http://kuomingwang.blogspot.com/2009/03/c.html
沒有留言:
張貼留言