views:

222

answers:

1

I need a collection that works just like a Dictionary/Hastable in a sense that it will only contain 1 instance of a given object at any time. A generic class would be preferable, but I'll take what I can get. Does this collection live somewhere in the framework?

+13  A: 

HashSet<T> from System.Core.dll

Ilya Ryzhenkov
Wow. That was fast. Thanks!!!
Micah