Program.cs 480 B

1234567891011121314151617181920212223
  1. // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
  2. using System;
  3. using System.Reactive;
  4. using System.Reactive.Concurrency;
  5. using System.Reactive.Disposables;
  6. using System.Reactive.Linq;
  7. using System.Reactive.Subjects;
  8. using System.Threading;
  9. #if !NO_TPL
  10. using System.Threading.Tasks;
  11. #endif
  12. namespace Playground
  13. {
  14. class Program
  15. {
  16. static void Main()
  17. {
  18. }
  19. }
  20. }