C Sharp (C#) - LINQ Fundamentals
You have a list of students with their scores. You want to get a dictionary of students who scored above 70, with their names as keys and scores as values. Which LINQ query correctly does this?
var students = new List<(string Name, int Score)>
{
("Alice", 85), ("Bob", 65), ("Charlie", 90)
};
var result = ???;