System.Collections.Generic.IDictionary<TKey,TValue> Members

The members of System.Collections.Generic.IDictionary<TKey,TValue> are listed below.

Public Properties

default property
Item(TKey)TValue. Gets or sets the element in the current instance that is associated with the specified key.
[read-only]
KeysICollection<TKey>.

Gets an ICollection`1 containing the keys of the IDictionary`2.

[read-only]
ValuesICollection<TValue>.

Gets an ICollection`1 containing the values in the IDictionary`2.

Public Methods

Add(TKey, TValue)
Adds an entry with the provided key and value to the current instance.
ContainsKey(TKey) : bool
Determines whether the current instance contains an entry with the specified key.
Remove(TKey) : bool
Removes the entry with the specified key from the current instance.
TryGetValue(TKey, out TValue) : bool
Documentation for this section has not yet been entered.