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

C#中判断为空

时间:2015-04-24 08:57:38      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:

在判断ComBox是否有选择条目(Item)时,判断出错,原因在于SeletedItem.ToString()存在问题,根本就不能转为String,去掉即可。

技术分享

null 关键字是表示不引用任何对象的空引用的文字值。null 是引用类型变量的默认值。那么也只有引用型的变量可以为NULL,如果 string s=null,的话,是不可以的,因为s是值类型的。另外,注意null与""及String.Empty的区别。

三种常用的字符串判空串方法

Length法:bool isEmpty = (str.Length == 0);

Empty法:bool isEmpty = (str == String.Empty);

General法:bool isEmpty = (str == "");

C#中判断为空

标签:

原文地址:http://www.cnblogs.com/liweis/p/4452420.html

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