C# Dictionary 的几种遍历方法 转

2021-01-15 21:14

阅读:450

标签:int   line   ons   集合   values   air   nbsp   val   版本   

  Dictionarystring, int> list = new Dictionarystring, int>();

 

            list.Add("d", 1);

 

            //3.0以上版本

            foreach (var item in list)

            {

                Console.WriteLine(item.Key + item.Value);

            }

            //KeyValuePair

            foreach (KeyValuePairstring, int> kv in list)

            {

                Console.WriteLine(kv.Key + kv.Value);

            }

            //通过键的集合取

            foreach (string key in list.Keys)

            {

                Console.WriteLine(key + list[key]);

            }

            //直接取值

            foreach (int val in list.Values)

            {

                Console.WriteLine(val);

            } 

            //非要采用for的方法也可

            Liststring> test = new Liststring>(list.Keys);

 

            for (int i = 0; i )

            {

                Console.WriteLine(test[i] + list[test[i]]);

            }

转 自 https://www.cnblogs.com/cjdxhc_site/articles/1727763.html

C# Dictionary 的几种遍历方法 转

标签:int   line   ons   集合   values   air   nbsp   val   版本   

原文地址:https://www.cnblogs.com/enych/p/12233424.html


评论


亲,登录后才可以留言!