1
0

Class1.cs 332 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Reactive.Linq;
  5. using System.Text;
  6. namespace CommonCodeInPcl
  7. {
  8. public class Class1
  9. {
  10. public static IObservable<int> GetFoo()
  11. {
  12. return Observable.Interval(TimeSpan.FromMinutes(1)).Select(_ => 3);
  13. }
  14. }
  15. }