如何检索HashSet的第二项<tuple <string,int =“”>&gt;

时间:2017-06-04 17:04:03

标签: c# .net

我是HashSet<Tuple<string, int>>在第二项中我是数字(1,18,5,46)。

我想在这些项目中获得最大数量。

我是编程新手,所以请原谅我提问。

我刚刚找到了一条路,想要分享: int max = students.Max(kvp => kvp.Item2);

1 个答案:

答案 0 :(得分:-1)

你可以这样做

using System;
using System.Collections.Generic;
using System.Linq;

public class Program
{
    public static void Main()
    {
        var students = new List<Tuple<string, int>>();

        students.Add(new Tuple<string, int>("test", 10));
        students.Add(new Tuple<string, int>("test", 10));

        Console.Write(students.Max(t => t.Item2));
    }
}