All with Predicate to Return True : All : LINQ C# Source Code


Custom Search

C# Source Code » LINQ » All »

 

All with Predicate to Return True








    
 

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

public class MainClass {
    public static void Main() {
        string[] presidents = {"G123456", "H", "a", "H", "over", "Jack"};
        bool all = presidents.All(s => s.Length > 5);
        Console.WriteLine(all);
    }
}

 
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo LINQ
» All