How do I use the \"NOT IN\" to get the missing data, to be added to \"foo\" List.
var accessories = new List(); var foo = new List()
Use List.Except:
foo.AddRange(accessories.Except(foo));
From MSDN:
Except Produces the set difference of two sequences.