C# 解包字典<string, List<string>>

C# Unpacking Dictionary<string, List<string>>

关于字典正确解包的快速(愚蠢)问题 格式是 Dictionary<string, List<string>>.

当我尝试使用 foreach 和下面的代码解压缩它时:

foreach (KeyValuePair<string, List<string>> item in _results)

我无法访问 item.Keyitem.Value。我只将它们作为一组 item.Keysitem.Values.

但是,我知道有可能获得该访问权限,因为我目前正在使用:

foreach (var item in _results)

我可以访问 item.Keyitem.Value

不使用 var 解压的正确方法是什么?

您可以使用 'Keys' 属性 遍历字典,然后您可以通过索引访问该值。

例如

foreach (var key in _results.Keys)
{
    var value = _results[key];
}

您可以使用以下方法遍历字典:

using System;
using System.Collections.Generic;

namespace Exercise
{
    static class Program
    {
        static public void Main()
        {
            var _results = new Dictionary<string, List<string>>{{"a", new List<string>{"x", "y", "z"}}, {"b", new List<string>{"x", "y"}}, {"c", new List<string>{"x"}}, };
            foreach (KeyValuePair<string, List<string>> item in _results)
            {
                Console.WriteLine($"{item.Key}: {item.Value.Count}");
                foreach (var s in item.Value)
                {
                    Console.WriteLine(s);
                }
            }
        }
    }
}

https://dotnetfiddle.net/IGwkuU