Oracle® Coherence .NET API Reference Release 3.7.1
E22844-03

Overload List

  NameDescription
SortedDictionary()()()
Initializes a new instance of the SortedDictionary class that is empty, has the default initial capacity, and is sorted according to the IComparable interface implemented by each key added to the SortedDictionary object.
SortedDictionary(IComparer)
Initializes a new instance of the SortedDictionary class that is empty, has the default initial capacity, and is sorted according to the specified IComparer interface.
SortedDictionary(IDictionary)
Initializes a new instance of the SortedDictionary class that contains elements copied from the specified dictionary, has the same initial capacity as the number of elements copied, and is sorted according to the IComparable interface implemented by each key.
SortedDictionary(Int32)
Initializes a new instance of the SortedDictionary class that is empty, has the specified initial capacity, and is sorted according to the IComparable interface implemented by each key added to the SortedDictionary object.
SortedDictionary(IComparer, Int32)
Initializes a new instance of the SortedDictionary class that is empty, has the specified initial capacity, and is sorted according to the specified IComparer interface.
SortedDictionary(IDictionary, IComparer)
Initializes a new instance of the SortedDictionary class that contains elements copied from the specified dictionary, has the same initial capacity as the number of elements copied, and is sorted according to the specified IComparer interface.
SortedDictionary(SerializationInfo, StreamingContext)
Initializes a new instance of the SortedDictionary class that is serializable using the specified SerializationInfo and StreamingContext objects.

See Also