Click or drag to resize
OrderedDictionaryTKey, TValue Properties

The OrderedDictionaryTKey, TValue generic type exposes the following members.

Properties
  NameDescription
Public propertyComparer
Returns the IComparer<T> used to compare keys in this dictionary.
Public propertyCount
Returns the number of keys in the dictionary.
(Overrides CollectionBaseTCount.)
Public propertyItem
Gets or sets the value associated with a given key. When getting a value, if this key is not found in the collection, then an ArgumentException is thrown. When setting a value, the value replaces any existing value in the dictionary.
(Overrides DictionaryBaseTKey, TValueItemTKey.)
Public propertyKeys
Returns a collection of the keys in this dictionary.
(Inherited from DictionaryBaseTKey, TValue.)
Public propertyValues
Returns a collection of the values in this dictionary. The ordering of values in this collection is the same as that in the Keys collection.
(Inherited from DictionaryBaseTKey, TValue.)
Top
See Also