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(); } } }
But what about select the max-length word from a list?above code does not work compile any more.
It works fine … Could you elaborate the steps that you followed wich resulted in the compiler error and what is the error that you received ?