How can I turn these two bits of code into one?
comCtrList = (from i in genOutList
join f in genAccList
on i.Contract equals f.Contract
select i.Contract).ToList();
genOutList.RemoveAll(acc => comCtrList.Contains(acc.Contract));
Do you want something like this?
Or