What would you recommend for class that needs to keep a list of unique integers?
I\'m going to want to Add() integers to the collection and also check for existence e.g.
HashSet:
The
HashSetclass provides high-performance set operations. A set is a collection that contains no duplicate elements, and whose elements are in no particular order...The capacity of a
HashSetobject is the number of elements that the object can hold. AHashSetobject's capacity automatically increases as elements are added to the object.The
HashSetclass is based on the model of mathematical sets and provides high-performance set operations similar to accessing the keys of the Dictionaryor Hashtable collections. In simple terms, the HashSetclass can be thought of as a Dictionarycollection without values. A
HashSetcollection is not sorted and cannot contain duplicate elements...