Contact: aviboots(AT)netvision.net.il
39,907 questions
51,839 answers
573 users
using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { int[] numbers = { 1, 3, 5, 7, 9 }; bool result = Array.TrueForAll(numbers, x => x % 2 == 1); Console.WriteLine(result); // True } } } /* run: True */
using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { int[] numbers = { 1, 3, 5, 4, 9 }; bool result = Array.TrueForAll(numbers, x => x % 2 == 1); Console.WriteLine(result); // False } } } /* run: False */