标签:
1 using System; 2 using System.Collections; 3 using System.Collections.Generic; 4 using System.Linq; 5 using System.Text; 6 using System.Threading.Tasks; 7 8 namespace test 9 { 10 class Program 11 { 12 static void Main(string[] args) 13 { 14 Hashtable hash = new Hashtable(); 15 hash.Add("Shi", 21); 16 hash.Add("We", 26); 17 hash.Add("Da", 20); 18 hash.Add("Ki", 3); 19 20 //键值对的特点,键不能重复 21 22 //判断集合中是否存在某个键 23 if(hash.ContainsKey("Shi")) 24 { 25 Console.WriteLine("Already Exist"); 26 } 27 28 //根据键获取值 29 Console.WriteLine(hash["Shi"]); 30 31 //遍历Hashtable中的所有元素 32 foreach(object item in hash.Values) 33 { 34 Console.WriteLine(item.ToString()); 35 } 36 37 //直接遍历键和值 38 foreach (DictionaryEntry item in hash) 39 { 40 Console.WriteLine(item.Key + " " + item.Value); 41 } 42 43 Console.ReadKey(); 44 } 45 } 46 }
标签:
原文地址:http://www.cnblogs.com/shiblog/p/4916013.html