三种常用的字符串判空串方法:
* Length法:bool isEmpty = (str.Length == 0);
* Empty法:bool isEmpty = (str == String.Empty);
* General法:bool isEmpty = (str == "");
===========================================================
用Length方法判空是最快的,注意只有字符串不为null的前提下,.NET 才会进一步计算s.Length是否为0,
所以一般常用 if( (s == null) || (s.Length == 0) ) 进行判断。
在字符串为空时,这五种判断语句的耗费时间由短到长
str .Length==0
str.Equals("")
str==string.Empty
str.Equals(string.Empty)
str == ""