Answers for "c# check if an specific item in a list is empty"

C#
0

check if list contains any empty element in c#

if (myList.Any(i => i != null))
{
    DoSomeThing();
}
Posted by: Guest on December-22-2020

Code answers related to "c# check if an specific item in a list is empty"

C# Answers by Framework

Browse Popular Code Answers by Language