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

  

posted @ 2016-11-17 15:27  爱编程1314  阅读(28010)  评论(1编辑  收藏  举报