C Sharp (C#) - LINQ Fundamentals
Given the class
Person { public string Name; public int Age; } and a list people containing: John(20), Lisa(40), and Mark(35), what will this LINQ query return?var result = people.Where(p => p.Age < 30).Select(p => p.Name);
