Any with false predicate
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(s => s.StartsWith("A"));
Console.WriteLine(any);
}
}
Related examples in the same category