Find Largest Element from an Array in C#



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
Updated on: 2020-06-22T14:51:48+05:30

3K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements