C# Program to find the smallest element from an array



Declare an array −

int[] arr = { 5, 9, 2, 7 };

Now to get the smallest element from an array, use the Min() method −

arr.Min());

Here is the complete code −

Example

 Live Demo

using System; using System.Linq; class Demo {    static void Main() {       int[] arr = { 5, 9, 2, 7 };       Console.WriteLine(arr.Min());    } }

Output

2
Updated on: 2020-06-22T14:14:43+05:30

2K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements