Interleaved merge with LINQ?
I'm currently experimenting a bit with LINQ. Let's say I have two collections of identical length: var first = new string[] { "1", "2", "3" }; var second = new string[] { "a", "b", "c" }; I would ...