Program.cs 235 B

123456789101112131415
  1. using System;
  2. using System.Reactive.Linq;
  3. namespace Excercise1
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. IObservable<int> source;
  10. IObserver<int> handler;
  11. }
  12. }
  13. }