public interface IDictionary : ICollection, IEnumerable
{
  bool IsFixedSize { get; }
  bool IsReadOnly { get; }
ICollection Keys { get; }
  ICollection Values { get; }
  object this[object key] { get; set; }
  void Add(object key, object value);
  void Clear();
  bool Contains(object key);
  IDictionaryEnumerator GetEnumerator();
  void Remove(object key);
}
如上面.net框架的IDictionary接口,其中ICollection Keys { get; },ICollection Values { get; }IDictionaryEnumerator GetEnumerator();
怎么理解?
我想实现一下IDictionary这个接口,但是遇上了以上的问题.
关于上面的问题,我在google上搜索过,但找不到帖子介绍,希望各位不吝赐教.