在C#中如何从字典中获取键列表?

时间:2013-08-11 16:11:55

标签: c# list dictionary

我有以下代码:

Dictionary <string, decimal> inventory;
// this is passed in as a parameter.  It is a map of name to price
// I want to get a list of the keys.
// I THOUGHT I could just do:

List<string> inventoryList = inventory.Keys.ToList();

但是我收到以下错误:

  

&#39; System.Collections.Generic.Dictionary.KeyCollection&#39;   不包含&#39; ToList&#39;的定义没有扩展方法   &#39; ToList&#39;接受第一个类型的参数   &#39; System.Collections.Generic.Dictionary.KeyCollection&#39;   可以找到(你错过了使用指令或程序集   引用?)

我错过了使用指令吗?是否有其他的东西

using System.Collections.Generic;

我需要什么?

修改

List < string> inventoryList = new List<string>(inventory.Keys);

有效,但刚收到有关LINQ的评论

3 个答案:

答案 0 :(得分:10)

您可以使用Enumerable.ToList扩展名方法,在这种情况下,您需要添加以下内容:

using System.Linq;

或者您可以使用different constructor of List<T>,在这种情况下,您不需要新的using声明并且可以执行此操作:

List<string> inventoryList = new List<string>(inventory.Keys);

答案 1 :(得分:1)

缺少

using System.Linq,其中包含ToList()扩展方法。

答案 2 :(得分:0)

我认为您应该能够像以下一样遍历Keys集合:

foreach (string key in inventory.Keys)
{
    Console.WriteLine(key + ": " + inventory[key].ToString());
}