Continuing my series of posts on LINQ, today I want to write about a few of the LINQ extension methods that take multiple input collections and return a single one.
Specifically, I want to take a look at the following methods: Concat()
, Zip()
and Join()
. These all take two input collections, and combine their elements into a single resulting collection in different ways.