asp.net Hashtable 遍历写法

复制代码 代码如下:

  foreach (DictionaryEntry de in h)//h为Hashtable

  {

  Response.Write(de.Key + "<br />");

  }