Implements an ordered Set based on a dictionary.

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 OrderedSet<T> : DictionarySet<T>
Visual Basic
<SerializableAttribute> _
Public Class OrderedSet(Of T) _
	Inherits DictionarySet(Of T)
Visual C++
[SerializableAttribute]
generic<typename T>
public ref class OrderedSet : public DictionarySet<T>

Type Parameters

T

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

Inheritance Hierarchy

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

See Also