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.dll) Version: 1.0.1.0 (3.2.0.4000)

Syntax

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

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "T:Iesi.Collections.Generic.HashedSet`1"]

Inheritance Hierarchy

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

See Also