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

using System;

namespace System.Collections.Generic {
	public interface IDictionary<TKey, TValue> : ICollection<KeyValuePair<TKey, TValue>> {

		void Add(TKey key, TValue value);
		bool ContainsKey(TKey key);
		bool Remove(TKey key);
		bool TryGetValue(TKey key, out TValue value);
		TValue this[TKey key] { get; set; }
		ICollection<TKey> Keys { get; }
		ICollection<TValue> Values { get; }

	}
}
#endif