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

C#:string判空

时间:2017-06-16 13:28:09      阅读:349      评论:0      收藏:0      [点我收藏+]

标签:font   sys   val   trim   uri   space   本质   bsp   net   

1.  string.IsNullOrEmpty (str)    

.Net 2 可用,也就是 Unity 能用

str = “”    ---> true

str = “ ”   ---> false

str = null  ---> true

 

2. String.IsNullOrWhiteSpace(str)  

namespace为:System.String

.Net 4 可用,也就是 Unity 不能用

本质上相当于:string.IsNullOrEmpty(value) || value.Trim().Length == 0;

 

 

str = ""    ---> true

 

str = "   "  ---> true

 

str = null  ---> true

 

C#:string判空

标签:font   sys   val   trim   uri   space   本质   bsp   net   

原文地址:http://www.cnblogs.com/makebetter/p/7026879.html

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