按键排序字典然后将所有值添加到列表

时间:2015-07-10 18:26:40

标签: c# linq list dictionary

我想按键对字典进行排序,然后从该字典中获取所有值并将它们放入数组中。

例如,

Dictionary<int, string> customerNamesByIDs = new Dictionary<int, string>();
customerNamesByIDs.Add(9, "joe");
customerNamesByIDs.Add(2, "bob");

//sort customerNamesByIDs by int
//take sorted dictionary and put them into an array
List<string> customerNames;
//customerNames[0] == "bob";
//customerNames[1] == "joe";

似乎应该有一种简单的方法来做到这一点,但我完全不知道如何做到这一点。谢谢你的时间!!

1 个答案:

答案 0 :(得分:5)

<div>
  Hello
</div>