我正在尝试添加到我的汽车租赁计划中。抱歉有这些问题。我仍在学习 :)。所以我希望我的表单显示一条错误消息,当您不输入数字或文本框为空白时弹出错误消息。我努力了:
//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));
它给了我一个错误:“字符串”不包含“IsNullOrWhitespace”的定义。谁能帮我?