I\'m pretty sure this is a duplicate, but I have tried everything, and I still cannot seem to get the differences. I have two lists of strings: listA and listB. I\'m trying to
Use LINQ's Except method:
Except
listA.Except(listB).ToList();