string str = null; if (string.IsNullOrWhiteSpace(str)) { MessageBox.Show("字符串為null"); } if (str.Length == 0) { MessageBox.Show("字符串為空"); } if (str == "") { MessageBox.Show("字符串為空"); } if (string.Empty==str) { MessageBox.Show("字符串為空"); } if (string.IsNullOrEmpty(str)) { MessageBox.Show("判讀字符串為null或者\"\""); }