The discussion in the previous session was aimed at reactive programming and the implementation of reactive programming using the IObservable<T> and IObserver<T> interfaces as an observer pattern. In this section, we will extend our learning with the help of Rx Extensions. If you would like to find out more about the development of Rx Extensions, you should follow the official repository at https://github.com/dotnet/reactive.
Please note that Rx Extensions are now merged with the System namespace, and you can find everything in the System.Reactive namespace. If you have experience with Rx Extensions, you should know that the namespace of these extensions has been changed, as follows:
- Rx.Main has been changed to System.Reactive.
- Rx.Core has been changed to System.Reactive.Core.
- Rx.Interfaces has been changed to System...