Mono Class Library: Overview

System.Collections.IDictionary: Members

The members of System.Collections.IDictionary are listed below.

Public Properties

[read-only]
IsFixedSizebool. Gets a value indicating whether the current instance has a fixed size.
[read-only]
IsReadOnlybool. 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]
KeysICollection. Gets a ICollection containing the keys of the current instance.
[read-only]
ValuesICollection. Gets a ICollection containing the values in the current instance.

Public Methods

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) : bool
Determines whether the current instance contains an entry with the specified key.
GetEnumerator() : IDictionaryEnumerator
Returns a IDictionaryEnumerator for the current instance.
Remove(object)
Removes the entry with the specified key from the current instance.

Extension Methods

static
AsQueryable(this IEnumerable) : System.Linq.IQueryable
Documentation for this section has not yet been entered.
static
Cast<TResult>(this IEnumerable) : IEnumerable<TResult>
Documentation for this section has not yet been entered.
static
OfType<TResult>(this IEnumerable) : IEnumerable<TResult>
Documentation for this section has not yet been entered.