码迷,mamicode.com
首页 > Windows程序 > 详细

C# 判断字符串为空(长度为0),或者是null(没有new)

时间:2018-04-17 11:46:20      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:style   bsp   rem   没有   box   code   mes   empty   new   

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

 

C# 判断字符串为空(长度为0),或者是null(没有new)

标签:style   bsp   rem   没有   box   code   mes   empty   new   

原文地址:https://www.cnblogs.com/Peng18233754457/p/8861970.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!