HashTable 遍历的两种方法

 

using  System.Collections;
 
HashTable thProduct;

 

IDictionaryEnumerator enumerator  =  thProduct.GetEnumerator(); 
   
while  (enumerator.MoveNext())
   {
    arrKey.Add(
" @ " + enumerator.Key.ToString());          //  Hashtable关健字
    arrValue.Add(enumerator.Value.ToString());             //  Hashtable值
   }

 

foreach  (DictionaryEntry objDE  in  thProduct)
{
    Console.WriteLine(objDE.Key.ToString());
    Console.WriteLine(objDE.Value.ToString());
}

转载于:https://www.cnblogs.com/wfwup/archive/2009/05/07/1451721.html

你可能感兴趣的:(游戏)