Find if listA contains any elements not in listB
listA.Except(listB)
will give you all of the items in listA that are not in listB
if (listA.Except(listB).Any())
listA.Any(_ => listB.Contains(_))
:)
listA.Except(listB)
will give you all of the items in listA that are not in listB
if (listA.Except(listB).Any())
listA.Any(_ => listB.Contains(_))
:)