.net 判断字符串中是否包含空格
string detail = "12345 6";
if (detail.IndexOf(" ") >= 0)
{
AlertMessage.Show(this, "请不要输入空格");
return;
}