当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


LINQ Max()用法及代码示例


LINQ 中的 max() 函数用于返回集合中的最大值。借助 Max() 函数,可以很容易地使用 Max() 函数从给定的数据源中找到最大值。在另一种情况下,我们必须编写代码以从值列表中获取最大值。

下面是在 C# 中使用 LINQ Max() 函数从列表或集合中获取最大值的语法。

C#中的LINQ Max()函数语法

int[] a = { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
int MaximumNum = a.Max();

观察上述语法后,我们正在使用 LINQ Max() 函数从 "a" 列表中获取最大值。

例:在此示例中,我们使用 Max() 函数从 C# 中的数组值列表中获取最大值。

using System;
using System.Collections.Generic;
using System. Linq;
using System. Text;
using System.Threading.Tasks;

namespace ConsoleApp1
{
    class Program
    {
        static void Main(string[] args)
        {
//Create an array named 'a' type of int having the values 1 t 9
            int[] a = { 1, 2, 3, 4, 5, 6, 7, 8, 9 };

            Console.WriteLine("The Maximum value in the array is:");
/*Max() function is applied on the array to 
find the maximum value from the arra*/
            int maximumNum = a.Max();

            Console.WriteLine("The maximum Number is {0}", maximumNum);

            Console.ReadLine();
        }
    }
}

输出

从上面的例子中,它将显示整数数组 "a,",我们正在使用 LINQ Max() 函数从给定的数组中找到最大值。

现在我们运行应用程序,它将显示列表中的最大值,如下所示在控制台窗口的输出中。

LINQ Max() Function



相关用法


注:本文由纯净天空筛选整理自 LINQ Max() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。