Skip to content

Instantly share code, notes, and snippets.

@anaisbetts
Created January 11, 2012 06:24
Show Gist options
  • Select an option

  • Save anaisbetts/1593354 to your computer and use it in GitHub Desktop.

Select an option

Save anaisbetts/1593354 to your computer and use it in GitHub Desktop.
var foo = new Subject<int> ();
foo.Subscribe(Console.WriteLine)
foo.OnNext(4);
>> 4
foo.OnNext(10);
>> 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment