我想按键对字典进行排序,然后从该字典中获取所有值并将它们放入数组中。
例如,
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";
似乎应该有一种简单的方法来做到这一点,但我完全不知道如何做到这一点。谢谢你的时间!!
答案 0 :(得分:5)
<div>
Hello
</div>