Which LINQ method would you use to transform each element in a collection?

  1. OrderBy
  2. Select
  3. GroupBy
  4. 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.