我有一个C#字典:
public Dictionary<Product, int>
我想将我的结果放入通用列表中:
List<Product> productList = new List<Product>();
产品排序器按字典中的 int 值降序。我尝试使用orderby方法,但没有成功。
您可以使用以下方法执行此操作:
List<Product> productList = dictionary.OrderByDescending(kp => kp.Value)
.Select(kp => kp.Key)
.ToList();
试试这个
List<Product> productList = dictionary.OrderByDescending(x => x.Value).Select(x => x.Key).ToList();
MyDict.OrderByDescending(x => x.Value).Select(p => p.Key).ToList();
下面是
使用 LINQ 查询语法的示例。
public class TestDictionary
{
public void Test()
{
Dictionary<Product, int> dict=new Dictionary<Product, int>();
dict.Add(new Product(){Data = 1}, 1);
dict.Add(new Product() { Data = 2 }, 2);
dict.Add(new Product() { Data = 3 }, 3);
dict.Add(new Product() { Data = 4 }, 9);
dict.Add(new Product() { Data = 5 }, 5);
dict.Add(new Product() { Data = 6 }, 6);
var query=(from c in dict
orderby c.Value descending
select c.Key).ToList();
}
[DebuggerDisplay("{Data}")]
public class Product
{
public int Data { get; set; }
}
}