从Ilist获得Idictionnary

时间:2010-07-09 07:22:06

标签: c#

如何将IDictionnay形成IList

2 个答案:

答案 0 :(得分:5)

您可以使用Linq通过使用ToDictionary扩展方法轻松地从列表中获取字典并提供表达式来获取密钥 - 例如

internal class Program
{
    private static void Main(string[] args)
    {
        IList<Person> list = new List<Person> {new Person("Bob", 40), new Person("Jill", 35)};
        IDictionary<string, Person> dictionary = list.ToDictionary(x => x.Name);
    }
}

public class Person
{
    private readonly int _age;
    private readonly string _name;

    public Person(string name, int age)
    {
        _name = name;
        _age = age;
    }

    public int Age
    {
        get { return _age; }
    }

    public string Name
    {
        get { return _name; }
    }
}

或者,正如Jon所指出的,如果您需要为Dictionary条目使用不同的值,您还可以指定第二个表达式来获取值 - 如下所示:

IDictionary<string, int> dictionary2 = list.ToDictionary(x => x.Name, x => x.Age);

答案 1 :(得分:4)

List有一个组件,Dictionary有两个组件。你不能简单地转换它们。

如果您希望词典为<int, object>,则其中int是您列表中信息的索引...

Dictionary<int, object> dict = new Dictionary<int, object>();
myList.ForEach(i => dict.Add(myList.IndexOf(i), i)); // Linq magic!

object替换为您的列表类型,并确保您是using System.Linq;


或使用ToDictionary()