Type Summary

						public interface IDictionary : ICollection, IEnumerable
{
  // Properties
     bool IsFixedSize { get; }
     bool IsReadOnly { get; }
     object this[object key] { set; get; }
     ICollection Keys { get; }
     ICollection Values { get; }

  // Methods
     void Add (object key, object value);
     void Clear ();
     bool Contains (object key);
     IDictionaryEnumerator GetEnumerator ();
     void Remove (object key);
}

Get .NET Framework Standard Library Annotated Reference, Volume 1: Base Class Library and Extended Numerics Library now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.