在C#中从字典中获取元组的最大值

时间:2015-11-21 20:55:59

标签: c# dictionary tuples

我有一个字典声明如下:

Dictionary<Tuple<long, long>, Tuple<double, long>> dict= new Dictionary<Tuple<long, long>, Tuple<double, long>>(); 

如何获取所有字典值的Item2的最大值?

2 个答案:

答案 0 :(得分:3)

您可以像这样简单地使用Max LINQ方法:

long max = dict.Values.Max(x => x.Item2);

答案 1 :(得分:3)

您可以使用Max method。不完全清楚你要求的是哪一个:

var maxKey = dict.Max(x => x.Key.Item2);
var maxValue = dict.Max(x => x.Value.Item2);

var maxEither = Math.Max(dict.Max(x => x.Key.Item2), dict.Max(x => x.Value.Item2));