欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

遍历Hashtable 的几种方法

程序员文章站 2023-11-21 15:45:34
方法一: idictionaryenumerator enumerator = thproduct.getenumerator();&nbs...
方法一:
idictionaryenumerator enumerator = thproduct.getenumerator(); 
   while (enumerator.movenext())
   {
    arrkey.add("@"+enumerator.key.tostring());         // hashtable关健字
    arrvalue.add(enumerator.value.tostring());            // hashtable值
   }
方法二:
using system.collections;

hashtable objhastab;

// setting values to objhastab

foreach (dictionaryentry objde in objhastab)
{
    console.writeline(objde.key.tostring());
    console.writeline(objde.value.tostring());
}