遍历Hashtable 的几种方法
程序员文章站
2022-10-12 19:24:51
方法一:
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());
}
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());
}
下一篇: 孕妇饮食有讲究 这些饮食禁忌孕妈妈要知道