Any operator with an string array : Any : LINQ C# Source Code


Custom Search

C# Source Code » LINQ » Any »

 

Any operator with an 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", "a", "H", "over", "Jack"};

        bool any = presidents.Any();
        Console.WriteLine(any);
    }
}

 
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo LINQ
» Any