我希望我的表单显示当用户未输入数字或文本框为空时弹出的错误消息。我试过了:
//If nothing is inserted in text, error box.
int value = 0;
if (string.IsNullOrWhitespace(txtBegin.Text) || !int.TryParse(txtBegin.Text, out value)) // Test for null or empty string or string is not a number
MessageBox.Show("Please enter a number!");
else
MessageBox.Show(string.Format("You entered: {0}!", value));
它给了我一个错误:'string' does not contain a definition for 'IsNullOrWhitespace'
答案 0 :(得分:2)
int value = 0;
if (string.IsNullOrWhitespace(txtBegin) || !int.TryParse(txtBegin, out value) ) //Test for null or empty string or string is not a number
MessageBox.Show("Please enter a number!");
else
MessageBox.Show(string.Format("You entered: {0}!", value));
答案 1 :(得分:1)
试
if (string.IsNullOrWhitespace(txtBegin)){
MessageBox.Show("Please enter a number!");
}
答案 2 :(得分:1)
实际上是string.IsNullOrWhiteSpace()
- 资本S
。或者尝试使用string.IsNullOrEmpty()
。
答案 3 :(得分:0)
这个会做的。检查文本框中是否有值,然后删除空格,并检查长度是否为零。
if (txtBox1.Text.Length>0 && txtBox1.Text.Trim().Length==0)
{
MessageBox.Show("Please enter a number!");
}