Skip to main content
✏️ Code CompletionC# C# / .NET Medium+20 XP

LINQ Select

Complete the LINQ projection.

✏️ Fill in the blank
var names = users.___(u => u.Name).ToList();

✏️ Type the missing code: