I am learning to write lambda expressions, and I need help on how to remove all elements from a list which are not in another list.
var list = new List
list = list.Except(list2).ToList();