阚金翔
达则兼济天下,穷则独善其身

string str = string.Empty;
if (str == "")
{ }
else { }

if (str == string.Empty)
{ }
else { }

if (str.Length == 0)//效率最高
{ }
else { }

if (string.IsNullOrEmpty(str))//可读性更强
{ }
else { }

if (string.IsNullOrWhiteSpace(str))
{ }
else { }

 

 

----------------------------------------------------------------------------
创建于2017年2月24日

整理于2017年11月27日

posted on 2017-11-28 09:21  阚金翔  阅读(2255)  评论(0编辑  收藏  举报