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

  

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-04
  • 2021-12-03
  • 2022-02-21
猜你喜欢
  • 2021-07-24
  • 2022-12-23
  • 2021-12-04
  • 2021-09-13
  • 2022-12-23
  • 2021-12-04
  • 2021-12-01
相关资源
相似解决方案