A code example illustrating the difference between the paradigms of async/await and Reactive (Rx) extension?
Both the System. Reactive extension for .NET and new C# 5.0 (.NET 4.5) async/await pursue (or based on) future and promises constructs paradigm (approach). Can you give the (*) simplest C# code example illustrating the difference between them? (*) Is it possible without I/O, internet or database connections? Update: Well, let me reformulate if this question seemed to be answered before. Why would one add and start using Reactive (Rx) extensions for .NET while using native .NET Iobservable / IObserver + await/async ? What are the possible illustrations of what one will be missing from Rx that