All with Predicate to Return True : All « LINQ « C# / C Sharp






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

 








Related examples in the same category

1.All with condition
2.uses All to determine whether an array contains only odd numbers.
3.All with string length