IDictionary public interface IDictionary : ICollection, IEnumerable Documentation bool IsFixedSize { get; } bool IsReadOnly { get; } object this[object key] { get; set; } ICollection Keys { get; } ICollection Values { get; } void Add(object key, object value) void Clear() bool Contains(object key) IDictionaryEnumerator GetEnumerator() void Remove(object key)