C# Dictionary用法汇总(定义、遍历、排序)

1、Dictionary 定义
Dictionary dic = new Dictionary();
dic.Add("语文", 98.5); 
        dic["数学"] = 97;
       
Dictionary dic 
                     = new Dictionary() { {"语文",95},{"数学",98.5} };
         
2、通过KeyValuePair 遍历元素
foreach(KeyValuePair kv in dic)
{
   Console.WriteLine("Key = {0}, Value = {1}",kv.Key, kv.Value);
}

3、Foreach遍历 字典
            Dictionary.KeyCollection keyCol = dic.Keys;
            foreach (int key in keyCol)
            {
                Console.WriteLine("Key = {0}", key);
            }
4、For 遍历字典
    for (int i = 0; i < dic.Count; i++)
            {
                KeyValuePair kv = dic.ElementAt(i);
                Console.WriteLine("Key = {0}, Value = {1}",kv.Key, kv.Value);  
            }
5、仅 遍历值 Key属性
            Dictionary.KeyCollection keyCol = dic.Keys;
            foreach (int key in keyCol)
            {
                Console.WriteLine("Key = {0}", key);
            }
6、仅遍历值 Valus属性
            Dictionary.ValueCollection valueCol = dic.Values;
            foreach (string value in valueCol)
            {
                Console.WriteLine("Value = {0}", value);
            }

7、通过Remove方法移除指定的键值           
            if (dic.ContainsKey("语文"))
            {
                Console.WriteLine("移除键:Key:{0},Value:{1}", "语文", dic["语文"]);
                dic.Remove("语文");
            }
            else
            {
                Console.WriteLine("不存在 Key : 1");
            }
8、字典 排序    
dic = dic .OrderByDescending(r => r.Value).ToDictionary(r => r.Key, r => r.Value);

你可能感兴趣的:(C#)