遍历Hashtable 的几种方法
发布时间:2016-12-28 来源:查字典编辑
摘要:方法一:IDictionaryEnumeratorenumerator=thProduct.GetEnumerator();while(en...
方法一:
IDictionaryEnumeratorenumerator=thProduct.GetEnumerator();
while(enumerator.MoveNext())
{
arrKey.Add("@"+enumerator.Key.ToString());//Hashtable关健字
arrValue.Add(enumerator.Value.ToString());//Hashtable值
}
方法二:
usingSystem.Collections;
HashTableobjHasTab;
//SettingvaluestoobjHasTab
foreach(DictionaryEntryobjDEinobjHasTab)
{
Console.WriteLine(objDE.Key.ToString());
Console.WriteLine(objDE.Value.ToString());
}