美文网首页
判断为空

判断为空

作者: 大捕猎店 | 来源:发表于2017-04-14 10:12 被阅读0次

C#

字符串为空

数组为空

string[] arrStrings = {"0", "1", "2", "3", "4", "5", "......"};
 //包含空字符串或NULL返回True
 bool hasNullOrEmptyElement = Array.Exists(arrStrings, string.IsNullOrEmpty);

相关文章

网友评论

      本文标题:判断为空

      本文链接:https://www.haomeiwen.com/subject/zykwattx.html