SortedDictionary Constructor
.NET Framework 2.0
Initializes a new instance of the SortedDictionary class.
| Name | Description |
|---|---|
| SortedDictionary () | Initializes a new instance of the SortedDictionary class that is empty and uses the default IComparer implementation for the key type. |
| SortedDictionary (Generic IComparer) | Initializes a new instance of the SortedDictionary class that is empty and uses the specified IComparer implementation to compare keys. |
| SortedDictionary (Generic IDictionary) | Initializes a new instance of the SortedDictionary class that contains elements copied from the specified IDictionary and uses the default IComparer implementation for the key type. |
| SortedDictionary (Generic IDictionary, Generic IComparer) | Initializes a new instance of the SortedDictionary class that contains elements copied from the specified IDictionary and uses the specified IComparer implementation to compare keys. |