判断为空
2017-04-14 本文已影响0人
大捕猎店
C#
字符串为空
数组为空
string[] arrStrings = {"0", "1", "2", "3", "4", "5", "......"};
//包含空字符串或NULL返回True
bool hasNullOrEmptyElement = Array.Exists(arrStrings, string.IsNullOrEmpty);
字符串为空
数组为空
string[] arrStrings = {"0", "1", "2", "3", "4", "5", "......"};
//包含空字符串或NULL返回True
bool hasNullOrEmptyElement = Array.Exists(arrStrings, string.IsNullOrEmpty);