Skip to content

tamirdresher/RxInAction

Repository files navigation

Rx.NET In Action

Join the chat at https://gitter.im/tamirdresher/RxInAction Build status

This respository includes the source code for the Rx.NET in Action book.

  • The 'master' branch include the VS2017 version
  • If you need the VS2015 version which include the project.json style of .NET Core projects, clone the VS2015 branch

How to use?

The solution is structured such that the examples from each chapter are located inside a folder with the chapter name

solution structure

Most of the projects are Console Applications, but some are standalone application in WPF. Inside each Console Application project, you'll find the Main method which contains the call for each example. You can run all the examples, or comment out the ones you dont want to run.

for example, this is how the Main method of the Creational Operators examples from chapter 4 looks like

static void Main(string[] args)
{
    GenerateSequence();
    CreatingRangeObservable();
    ReadingAFileWithGenerate();
    CreatingSingleItemObservable();
    CreatingNeverendingObservable();
    CreatingObservableTheThrows();
    CreatingEmptyObservable();
    Console.ReadLine();
}  

About

This respository includes the source code for the Reactive Extensions in Action book

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published