I have an array of simple objects from which I need to remove the duplicates. I'm thinking about creating a dictionary using as a key the toString value of each object. I'll feed the dictionary by looping through the array, then loop over the dictionary and push the items into a new array.
I'm looking for a sanity check. Is this a decent idea? Has anyone done it already and maybe more efficiently? Thanks! Warren

