Newer
Older
DNA / corlib / System.Collections / IDictionary.cs
@Chris Bacon Chris Bacon on 21 Jan 2012 430 bytes First commit
#if !LOCALTEST

using System;

namespace System.Collections {
	public interface IDictionary : ICollection {

		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);
		new IDictionaryEnumerator GetEnumerator();
		void Remove(object key);

	}
}
#endif