C
Linq Count Kullanımı ve Örneği
static void Main(string[] args) { int[] sayilar = { -10, 25, 32, 13, 5, 7, 14, 50, -5, 9, -3, -8 }; int cift = sayilar.Count(n => n % 2 == 0); int negatif = sayilar.Count(n => n < 0); int negatifcift = (from n in sayilar where n%2==0 && n < 0 select n).Count(); Console.WriteLine("Çift sayıların sayısı>>{0}", cift); Console.WriteLine("Negatif sayıların sayısı>>{0}", negatif); Console.WriteLine("Negatif çift sayıların sayısı>>{0}", negatifcift); Console.ReadKey(); }