I have two sting lists
List<string> list1=new List(){"1","2","3"}; List<string> list2=new List(){"1","2"};
What will be the easiest way to check if list1 contains the values in list2.
How about
list1.Except(list2).Any();
Try using [listName].Except(SecondListName).Any();
This should work.