我怎样才能进行“分组依据”?与 Dictionary 对象?
在 C# 中,我有一个 Dictionary 对象,它存储一个整数值和一个十进制值。
Dictionary<decimal,int> objDict = new Dictionary<decimal,int>();
这些值是
12 1
23 1
14 1
6 2
9 2
16 3
-4 3
我想使用 LINQ 对此进行分组,以便获得最大值。预期输出是
23 1
9 2
16 3
How to do that?
In C#, I have a Dictionary object which stores one integer value and one decimal value.
Dictionary<decimal,int> objDict = new Dictionary<decimal,int>();
and the values are
12 1
23 1
14 1
6 2
9 2
16 3
-4 3
I want to do a group by on this using LINQ, so that I will get the max value. The expected output is
23 1
9 2
16 3
How to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)