how to check if list is empty in c# code example
Example 1: c# tell if list object is empty
if(listOfObjects.Count == 0){
//when list is empty
}
Example 2: check if list contains any empty element in c#
if (myList.Any(i => i != null))
{
DoSomeThing();
}