标签:添加 AC code entry 元素 ons stat try line
遍历用到DictionaryEntry(字典键/值对)
实例
创建一个Hashtable对象,向其中添加4个元素,然后遍历
static void Main(string[] args) { Hashtable ht = new Hashtable(); ht.Add(1,"张三"); ht.Add(2, "李四"); ht.Add(3, "王五"); ht[4] = "朱六"; //第一种方法推荐 //foreach (DictionaryEntry item in ht) //{ // Console.WriteLine(item.Value); //} //第二种方法 foreach (object item in ht.Keys) { Console.WriteLine("键{0} 值{1}",item,ht[item]); } Console.Read(); }
标签:添加 AC code entry 元素 ons stat try line
原文地址:https://www.cnblogs.com/xiaowie/p/9110782.html