Which LINQ method would you use to transform each element in a collection?
- OrderBy
- Select
- GroupBy
- Where
Explanation
The Select method is used for projection/transformation, allowing you to transform each element in a collection into a new form or extract specific properties from objects.