I love string.IsNullOrEmpty method. I\'d love to have something that would allow the same functionality for IEnumerable. Is there such? Maybe some collection he
string.IsNullOrEmpty
The other best solution as below to check empty or not ?
for(var item in listEnumerable) { var count=item.Length; if(count>0) { // not empty or null } else { // empty } }