C Sharp (C#) - LINQ Fundamentals
Given the class
Person { public string Name; public int Age; } and list people with three persons: Alice(30), Bob(25), and Carol(35), what does this LINQ query return?var result = people.Where(p => p.Age > 28).Select(p => p.Name).ToList();
