Max on String array

image_pdfimage_print
   
 
using System;
using System.Linq;
using System.Collections;
using System.Collections.Generic;

public class MainClass {
    public static void Main() {
        string[] presidents = {"G", "H", "H", "H", "H", "J"};
        string maxName = presidents.Max();
        Console.WriteLine(maxName);
    }
}

    


This entry was posted in LINQ. Bookmark the permalink.