I have two lists:
List listA List listB
How to check using LINQ if in the listA exists an element w
listA
listA.Except(listB) will give you all of the items in listA that are not in listB
listA.Except(listB)