.NET(C#)字典(Dictionary)遍历方法

内容纲要

1、使用for遍历字典(Dictionary)

注意:ElementAt()需要引入using System.Linq命名空间,Dictionary命令空间是using System.Collections.Generic;

 Dictionary<string, string> dic =
                new Dictionary<string, string> {
                    ["key1"] = "value1",
                    ["key2"] = "value2",
                    ["key3"] = "value3"
                };
         for (int i = 0; i < dic.Count; i++) {
                var item = dic.ElementAt (i);
                Console.WriteLine ("key is " + item.Key);
                Console.WriteLine ("value is " + item.Value);
            }
            for (int i = 0; i < dic.Count; i++) {
                Console.WriteLine ("key is " + dic.Keys.ElementAt (i));
                Console.WriteLine ("value is " + dic.Values.ElementAt (i));
            }

2、使用foreach遍历字典(Dictionary)

Dictionary<string, string> dic =
                new Dictionary<string, string> {
                    ["key1"] = "value1",
                    ["key2"] = "value2",
                    ["key3"] = "value3"
                };
        foreach (string key in dic.Keys) {
                Console.WriteLine ("key is " + key);
                Console.WriteLine ("value is " + dic[key]);
            }
            foreach (string value in dic.Values) {
                Console.WriteLine ("value is " + value);
            }
            foreach (KeyValuePair<string, string> item in dic) {
                Console.WriteLine ("key is " + item.Key);
                Console.WriteLine ("value is " + item.Value);
            }

3、使用while遍历字典(Dictionary)

   Dictionary<string, string> dic =
                new Dictionary<string, string> {
                    ["key1"] = "value1",
                    ["key2"] = "value2",
                    ["key3"] = "value3"
                };
         var enumerator = dic.GetEnumerator ();
            while (enumerator.MoveNext ()) {
                Console.WriteLine ("key is " + enumerator.Current.Key);
                Console.WriteLine ("value is " + enumerator.Current.Value);
            }

给TA打赏
共{{data.count}}人
人已打赏
C#

.NET(C#) Linq GroupBy和GroupJoin的使用

2022-10-31 10:21:54

C#

.NET(C#)时间日期字符串(String)转换成Datetime异常报错问题

2022-11-1 18:12:44

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
今日签到
有新私信 私信列表
搜索