Implements a Set based on a Dictionary (which is equivalent of non-genric HashTable) This will give the best lookup, add, and remove performance for very large data-sets, but iteration will occur in no particular order.

Namespace: Iesi.Collections.Generic
Assembly:   Iesi.Collections (in Iesi.Collections)
Version: 1.0.0.3

Syntax

Visual Basic (Declaration)
<SerializableAttribute> _
Public Class HashedSet(Of T) _
	Inherits DictionarySet(Of T)
C#
[SerializableAttribute]
public class HashedSet<T> : DictionarySet<T>
Visual C++
[SerializableAttribute]
generic<typename T>
public ref class HashedSet : public DictionarySet<T>

Type Parameters

T

Inheritance Hierarchy

System.Object
  Iesi.Collections.Generic.Set<T>
    Iesi.Collections.Generic.DictionarySet<T>
      Iesi.Collections.Generic.HashedSet<(Of T>)