C# Program to find the largest element from an array



Declare an array −

int[] arr = { 20, 50, -35, 25, 60 };

Now to get the largest element from an array, use the Max() method −

arr.Max());

Here is the complete code −

Example

 Live Demo

using System;
using System.Linq;
class Demo {
   static void Main() {
      int[] arr = { 20, 50, -35, 25, 60 };
      Console.WriteLine(arr.Max());
   }
}

Output

60
karthikeya Boyini
karthikeya Boyini

I love programming (: That's all I know


Advertisements