c# how to get max value from list code example
Example 1: see max value in array c#
using System.Linq;
int maxValue = anArray.Max();
Example 2: c# list max
var values = new List<int> { 2, 9, 1, 3 };
Console.WriteLine(values.Max()); // Output: 9
var otherValues = new List<int?> { 2, 9, 1, 3, null };
Console.WriteLine(otherValues.Max()); // Output: 9