Max on String array : Max : LINQ C# Source Code


Custom Search

C# Source Code » LINQ » Max »

 

Max on String array








    
 
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);
    }
}

 
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo LINQ
» Max