KeyvaluePair 与 DictionaryEntry

来源:互联网 发布:独立域名商城 编辑:程序博客网 时间:2024/06/11 11:52

      如同Dictionary<TKey, TValue>是HashTable的泛型版本一样,KeyValuePair<TKey, TValue>是DictionaryEntry的泛型版本。

      KeyValuePair<TKey, TValue>常用来遍历Dictionary,而DictionaryEntry用来遍历HashTable。

0 0