#region 程序集 mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
// C:Program Files (x86)Reference AssembliesMicrosoftFramework.NETFrameworkv4.5.2mscorlib.dll
#endregion
using System.Reflection;
using System.Runtime.InteropServices;
namespace System.Collections
{
[ComVisible(true)]
[DefaultMember("Item")]
public interface IDictionary : ICollection, IEnumerable
{
object this[object key] { get; set; }
ICollection Keys { get; }
ICollection Values { get; }
bool IsReadOnly { get; }
bool IsFixedSize { get; }
void Add(object key, object value);
void Clear();
bool Contains(object key);
IDictionaryEnumerator GetEnumerator();
void Remove(object key);
}
}