lest say I have two lists
List1:
"Tom", "Frank", "Lacey"
List2:
"Frank", "Tom"
what would be the query needed to show that Tom and Fran are being repeated?
The lists that I am trying to compare are very big and if I do something like:
var q = from a in List1
from b in List2
where a.Name == b.Name
select a;
this takes a long time.