diff options
Diffstat (limited to 'cs/demo/Ice/compact/hello/Program.cs')
-rw-r--r-- | cs/demo/Ice/compact/hello/Program.cs | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/cs/demo/Ice/compact/hello/Program.cs b/cs/demo/Ice/compact/hello/Program.cs new file mode 100644 index 00000000000..29c47e42752 --- /dev/null +++ b/cs/demo/Ice/compact/hello/Program.cs @@ -0,0 +1,28 @@ +// **********************************************************************
+//
+// Copyright (c) 2003-2011 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+
+using System;
+using System.Linq;
+using System.Collections.Generic;
+using System.Windows.Forms;
+
+namespace client
+{
+ static class Program
+ {
+ /// <summary>
+ /// The main entry point for the application.
+ /// </summary>
+ [MTAThread]
+ static void Main()
+ {
+ Application.Run(new MainForm());
+ }
+ }
+}
\ No newline at end of file |