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)
Version: 1.0.0.3
Syntax
| Visual Basic (Declaration) |
|---|
<SerializableAttribute> _ Public Class SortedSet _ Inherits DictionarySet |
| C# |
|---|
[SerializableAttribute] public class SortedSet : DictionarySet |
| Visual C++ |
|---|
[SerializableAttribute] public ref class SortedSet : public DictionarySet |