C# Dictionary字典集合

  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Text;  
  5. using System.Threading.Tasks;  
  6.   
  7. namespace _04Dictionary  
  8. {  
  9.     class Program  
  10.     {  
  11.         static void Main(string[] args)  
  12.         {  
  13.             Dictionary<intstring> dic = new Dictionary<intstring>();  
  14.             dic.Add(1, "张三");  
  15.             dic.Add(2, "李四");  
  16.             dic.Add(3, "王五");  
  17.             dic[1] = "新来的";  
  18.             foreach (KeyValuePair<int,string> kv in dic)  
  19.             {  
  20.                 Console.WriteLine("{0}---{1}",kv.Key,kv.Value);  
  21.             }  
  22.   
  23.             //foreach (var item in dic.Keys)  
  24.             //{  
  25.             //    Console.WriteLine("{0}---{1}",item,dic[item]);  
  26.             //}  
  27.             Console.ReadKey();  
  28.         }  
  29.     }  
  30. }  
shashou47

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: