gpt4 book ai didi

c# - 使用 LINQ 按内部 Dictionary 值的值对 Dictionary> 进行排序?

转载 作者:太空宇宙 更新时间:2023-11-03 11:53:10 27 4
gpt4 key购买 nike

我似乎无法理解这个问题。我需要使用 LINQ 按内部字典的值对字典进行排序。有什么想法吗?

最佳答案

你的意思是你想要所有的值,按内部值排序?

from outerPair in outer
from innerPair in outerPair.Value
orderby innerPair.Value
select new {
OuterKey = outerPair.Key,
InnerKey = innerPair.Key,
Value = innerPair.Value
};

关于c# - 使用 LINQ 按内部 Dictionary 值的值对 Dictionary<string,Dictionary<string,string>> 进行排序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1520827/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com