Created
February 8, 2011 07:01
-
-
Save anaisbetts/816011 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This is Pseudo-Powershell :) | |
| [1,2,3] | someService | someOtherService | |
| // is like this in Rx.NET; the difference though is that we | |
| // never wait anywhere. | |
| new[]{1,2,3}.AsObservable() | |
| .SelectMany(someService) | |
| .SelectMany(someOtherService) | |
| .Subscribe(Console.WriteLine); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment