All with string length
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 all = presidents.All(s => s.Length > 3);
Console.WriteLine(all);
}
}
Related examples in the same category