Answers for "c# is list empty"

C#
0

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

C# Answers by Framework

Browse Popular Code Answers by Language