Conditional Count
using System; using System.Collections.Generic; using System.Linq; using System.Text; public class MainClass { public static void Main() { int[] numbers = { 5, 4, 1, 3, 9, 8, 6, 7, 2, 0 }; int oddNumbers = numbers.Count(n => n % 2 == 1); Console.WriteLine("There are {0} odd numbers in the list.", oddNumbers); } }
1. | Count with string value | ||
2. | Count with string operator | ||
3. | The aggregation operators return a scalar value | ||
4. | Use Aggregate Operators: Count | ||
5. | Nested Count |