Maximum integer value find in list

Assuming .NET Framework 3.5 or greater:

var l = new List<int>() { 1, 3, 2 };
var max = l.Max();
Console.WriteLine(max); // prints 3

Lots and lots of cool time-savers like these in the Enumerable class.

Leave a Comment