遍历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());
}
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());
}
上一篇: 网站建设前期如何做好规划?