The following code sample demonstrates how: int[] numbers = {3,5,6,9}; bool anyEven = numbers.Any(n => n % 2 == 0); // this returns true for the given array but false for {3,5,7,9}