use Min to get the lowest number in an integer array. : Min « LINQ « C# / C Sharp






use Min to get the lowest number in an integer array.

 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

public class MainClass {
    public static void Main() {
        int[] numbers = { 5, 4, 1, 3, 9, 8, 6, 7, 2, 0 };

        int minNum = numbers.Min();

        Console.WriteLine("The minimum number is {0}.", minNum);
    }
}

 








Related examples in the same category

1.First Min Prototype
2.Min with string value
3.Min with object property
4.Min with string property value
5.uses Min to get the length of the shortest word in a string array.
6.Grouped Min