Implements a Set that automatically changes from a list to a hash table when the size reaches a certain threshold. This is good if you are unsure about whether you data-set will be tiny or huge. Because this uses a dual implementation, iteration order is not guaranteed!

Namespace: Iesi.Collections
Assembly: Iesi.Collections (in Iesi.Collections.dll) Version: 1.0.1.0 (3.2.0.4000)

Syntax

C#
[SerializableAttribute]
public class HybridSet : DictionarySet
Visual Basic
<SerializableAttribute> _
Public Class HybridSet _
	Inherits DictionarySet
Visual C++
[SerializableAttribute]
public ref class HybridSet : public DictionarySet

Inheritance Hierarchy

System..::..Object
  Iesi.Collections..::..Set
    Iesi.Collections..::..DictionarySet
      Iesi.Collections..::..HybridSet

See Also