C#判断字符串为空

 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或者\"\"");
}

  

上一篇:七周成为数据分析师之第五章SQL


下一篇:【本周面试题】第1周 - 获取URL中的查询字符串参数、get和post的区别