码迷,mamicode.com
首页 > 其他好文 > 详细

Hashtable

时间:2015-10-28 01:19:51      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:

 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 }

 

Hashtable

标签:

原文地址:http://www.cnblogs.com/shiblog/p/4916013.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!