Before we can begin exploring Rx, we need to install it. The easiest way to do this is using NuGet.
Installing Rx
Getting ready
For this chapter on Rx, we will not create a separate class. All the code will be written in a console application.
How to do it...
- Create a console application, and then right-click on your solution and select Manage NuGet Packages for Solution... from the context menu.
- In the window that is displayed afterwards, type in System.Reactive in the search textbox and search for the NuGet installer:
- At the time of writing this book, the last stable release was version 3.1.1. If you have...