Is there a method to find the max of 3 numbers in C#? December 10, 2022 by Tarik You could use Enumerable.Max: new [] { 1, 2, 3 }.Max();