¿Qué hace el siguiente código?
List<int> numbers = new List<int> { 1, 2, 3, 4, 5 };
int count = numbers.FindAll(n => n % 2 == 0).Count;
¿Qué hace el siguiente código?
List<int> numbers = new List<int> { 1, 2, 3, 4, 5 };
int count = numbers.FindAll(n => n % 2 == 0).Count;