Mono Class Library: OverviewSystem.Collections.IDictionary: Members |
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 propertyItem(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) : 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.
staticAsQueryable(this IEnumerable) : System.Linq.IQueryable Documentation for this section has not yet been entered. staticCast<TResult>(this IEnumerable) : IEnumerable<TResult> Documentation for this section has not yet been entered. staticOfType<TResult>(this IEnumerable) : IEnumerable<TResult> Documentation for this section has not yet been entered.