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/Samples/HOL/CS/Excercise3/Start/Program.cs')
-rw-r--r--Rx/NET/Samples/HOL/CS/Excercise3/Start/Program.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Rx/NET/Samples/HOL/CS/Excercise3/Start/Program.cs b/Rx/NET/Samples/HOL/CS/Excercise3/Start/Program.cs
new file mode 100644
index 0000000..6f060db
--- /dev/null
+++ b/Rx/NET/Samples/HOL/CS/Excercise3/Start/Program.cs
@@ -0,0 +1,15 @@
+using System;
+using System.Reactive.Linq;
+using System.Windows.Forms;
+
+namespace Excercise3
+{
+ class Program
+ {
+ static void Main()
+ {
+ var frm = new Form();
+ Application.Run(frm);
+ }
+ }
+}