Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ The third overload accepts a `Func<TFirst, TSecond, TResult>` argument that acts

:::code source="./snippets/standard-query-operators/SelectProjectionExamples.cs" id="ZipResultSelector":::

With the preceding `Zip` overload, the specified function is applied to the corresponding elements `numbers` and `letter`, producing a sequence of the `string` results.
With the preceding `Zip` overload, the specified function is applied to the corresponding elements `number` and `letter`, producing a sequence of the `string` results.

## `Select` versus `SelectMany`

Expand Down
Loading