Implements a set based on a sorted tree. This gives good performance for operations on very large data-sets, though not as good - asymptotically - as a HashedSet. However, iteration occurs in order. Elements that you put into this type of collection must implement IComparable, and they must actually be comparable. You can't mix String and Int32 values, for example.

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

Syntax

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

Inheritance Hierarchy

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

See Also