• Stars
    star
    160
  • Rank 233,700 (Top 5 %)
  • Language
    C#
  • License
    MIT License
  • Created about 9 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

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

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();
}