Anyone have a quick method for de-duplicating a generic List in C#?
Might be easier to simply make sure that duplicates are not added to the list.
if(items.IndexOf(new_item) < 0) items.add(new_item)