Answers for "c# list get object with max value"

C#
-3

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
Posted by: Guest on May-17-2021

Code answers related to "c# list get object with max value"

C# Answers by Framework

Browse Popular Code Answers by Language