The members of System.Collections.IDictionary are listed below.
| [read-only] | IsFixedSize | bool. Gets a value indicating whether the current instance has a fixed size. |
| [read-only] | IsReadOnly | bool. Gets a value indicating whether the current instance is read-only. |
default property | Item(object) | object. Gets or sets the element in the current instance that is associated with the specified key. |
| [read-only] | Keys | ICollection. Gets a ICollection containing the keys of the current instance. |
| [read-only] | Values | ICollection. Gets a ICollection containing the values in the current instance. |
Add(object, object)Adds an entry with the provided key and value to the current instance. | ||
Clear()Removes all key and value pairs from the current instance. | ||
Contains(object)Determines whether the current instance contains an entry with the specified key. | ||
GetEnumerator()Returns a IDictionaryEnumerator for the current instance. | ||
Remove(object)Removes the entry with the specified key from the current instance. | ||