Answers for "check if list have any null item c#"

C#
0

c# list contains null

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

Code answers related to "check if list have any null item c#"

C# Answers by Framework

Browse Popular Code Answers by Language