摘要: 哈希表中的项存储在System.Collections.DictionaryEntry 对象中,可用foreach来遍历哈希表中的值,如下: Hashtable myHashtable = new Hashtable; foreach(DictionaryEntry entry in myHashtable) { string strKey = entry.Key; string ... 阅读全文
posted @ 2006-07-03 16:45 Jailu 阅读(851) 评论(0) 推荐(0)