Rx framework – IObservable<T>.Merge
In my previous post I used the IObservable<T>.Zip extension method in the Drag-and-Drop example, which takes two observable collections and runs a function over them to return a new observable collection of potentially a different type. But what if you just want to simply merge the two observable collections into one stream? Well, Rx API …