LINQ gems: Zip
I'm always fascinated by how simple yet helpful LINQ queries are.
Take for example the Enumerable.Zip() method. It's simple, yet very useful in case you need to combine two sequences of data.
Here's a partial example where Zip() is used to combine a...
mydevtricks.com2 min read
Kamen Dimitrov
Pretty neat