https://github.com/ttu/csharp-rx-koans
C# Reactive Extensions (Rx) Koans forked from https://archive.codeplex.com/?p=rxkoans and ported to .NET 5
https://github.com/ttu/csharp-rx-koans
csharp dotnet koans reactive-extensions rx
Last synced: 6 months ago
JSON representation
C# Reactive Extensions (Rx) Koans forked from https://archive.codeplex.com/?p=rxkoans and ported to .NET 5
- Host: GitHub
- URL: https://github.com/ttu/csharp-rx-koans
- Owner: ttu
- License: mit
- Created: 2019-01-23T17:35:00.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-02-20T05:46:02.000Z (over 4 years ago)
- Last Synced: 2025-02-03T20:53:52.464Z (8 months ago)
- Topics: csharp, dotnet, koans, reactive-extensions, rx
- Language: C#
- Homepage:
- Size: 20.5 KB
- Stars: 4
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# C# Reactive Extensions (Rx) Koans
Fork from: https://archive.codeplex.com/?p=rxkoans
Project ported from _Full Framework_ to _.NET 5_
---
### Welcome to the Reactive Extensions (Rx) Koans
> _"Learn by Doing"_
> _55 progressive examples to help you learn Rx_
By: Bart De Smet & Llewellyn Falco
### Definition of ‘Koan’
Kōans is a zen word meaning the enlightenment or awakening of a person, usually through a puzzle or riddle. The most common one is “What is the sound of one hand clapping?”### What is this all about?
Rx is a new innovative way to work with asynchronous operations on event streams. It is composable, and uses well-known LINQ syntax to easily express complex timing and event processing operations.
This RxKoans are an interactive and fun way to be introduced to and learn Rx.### Current Lessons
* Lesson0Lambdas
* Lesson1ObservableStreams.cs
* Lesson2ComposableObservations.cs
* Lesson3Linq.cs
* Lesson4Time.cs
* Lesson5Events.cs
* Lesson6AdvancedStreams.cs
* Lesson7AsyncInvoke.cs### Getting Started
Open the Visual Studio 2010 Solution, and open the file Koans\Lessons\Lesson1ObservableStreams.cs
Press Ctrl R, T (not Ctrl R, Ctrl T). Fill in the blank (____) Run it again to see it pass.
After you finish Lesson1, move to the other LessonX files.### Running Koans:
Ctrl R, T will run the koans. It will run either the single koan your cursor is on, or the whole file, if your cursor is not in a specific koan (Unit Test).
Running in Debug Mode:
Ctrl R, Ctrl T will run in Debug mode, we do not suggest this, as it just makes things slower and more confusing.### Tips & Tricks
* Play: Experimentation is a powerful learning tool. Don't be afraid to try stuff out, and run it to see what happens.
* Run the Test: It is valuable to see what the results are. All Koans are designed to produce something even before they are filled in.
* Debug: Set some break point and walk thru the code. It's a great way to get details. (Ctrl+R, Ctrl+T) will run in debug mode.
* Do Them with a Friend: Learn is more fun and less fustrating when you have a friend with you.### Links:
Rx : http://msdn.microsoft.com/data/gg577609
Javascript Rx Koans: https://github.com/panesofglass/RxJSKoans/network