Anyone have a quick method for de-duplicating a generic List in C#?
You can use Union
obj2 = obj1.Union(obj1).ToList();