导航

C# hashTable的使用《收藏》

Posted on 2009-11-26 15:47  kingwangzhen  阅读(289)  评论(0编辑  收藏  举报

方法一
 foreach (System.Collections.DictionaryEntry de in objHasTab)
{
    //注意HastTable内存储的默认类型是object,需要进行转换才可以输出
    Console.WriteLine(de.Key.ToString());
    Console.WriteLine(de.Value.ToString());
}

方法二
System.Collections.IDictionaryEnumerator enumerator = objHashTablet.GetEnumerator();
while (enumerator.MoveNext())
{
    Console.WriteLine(enumerator.Key);         // Hashtable关健字
    Console.WriteLine(enumerator.Value);      // Hashtable值
}