How to Get the Max Value from a List of Integer using Lambda Expression in C#?

Below is a sample code snippet demonstrating the usage of Lambda expression to get the Max value from a list of integer in C#.

How to Get the Max Value from a List of Integer using Lambda Expression in C#?

using System;

using System.Collections.Generic;

using System.Data;

using System.Linq;

namespace AbundantCode

{

internal class Program

{

//How to Get the Max Value from a List Of Integer using Lambda Expression in C#?

private static void Main(string[] args)

{

int[] Marks = new int[] { 1, 2, 8, 3, 10, 25, 4 };

// Get Max using Lambda Expression

var result = Marks.Max();

Console.WriteLine(result);

Console.ReadLine();

}

}

}
%d