Answers for "how to see if a list is empty in c#"

C#
1

how to check a list is null or empty in c#

if ( (myList!= null) && (!myList.Any()) )
 {
     // Add new item
     myList.Add("new item"); 
 }
Posted by: Guest on March-29-2021
1

c# tell if list object is empty

if(listOfObjects.Count == 0){
//when list is empty
}
Posted by: Guest on August-05-2020

Code answers related to "how to see if a list is empty in c#"

C# Answers by Framework

Browse Popular Code Answers by Language