Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/rx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Rx/NET/Source/Playground/Program.cs')
-rw-r--r--Rx/NET/Source/Playground/Program.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/Rx/NET/Source/Playground/Program.cs b/Rx/NET/Source/Playground/Program.cs
new file mode 100644
index 0000000..c19dea9
--- /dev/null
+++ b/Rx/NET/Source/Playground/Program.cs
@@ -0,0 +1,20 @@
+// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
+
+using System;
+using System.Reactive;
+using System.Reactive.Concurrency;
+using System.Reactive.Disposables;
+using System.Reactive.Linq;
+using System.Reactive.Subjects;
+using System.Threading;
+
+namespace Playground
+{
+ class Program
+ {
+ static void Main()
+ {
+
+ }
+ }
+}