summaryrefslogtreecommitdiff
path: root/csharp/xamarin/controller/controller.iOS/Main.cs
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2018-07-20 19:19:30 +0200
committerJose <jose@zeroc.com>2018-07-20 19:19:30 +0200
commitf831849a119aa592d207fd38428517b414c2b39d (patch)
tree88c4d1c69072ad45eda621079f0d1d8b89a1fd8e /csharp/xamarin/controller/controller.iOS/Main.cs
parentUpdate Travis CI build to use ubuntu-18.04 (diff)
downloadice-f831849a119aa592d207fd38428517b414c2b39d.tar.bz2
ice-f831849a119aa592d207fd38428517b414c2b39d.tar.xz
ice-f831849a119aa592d207fd38428517b414c2b39d.zip
Xamarin testsuite
Diffstat (limited to 'csharp/xamarin/controller/controller.iOS/Main.cs')
-rw-r--r--csharp/xamarin/controller/controller.iOS/Main.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/csharp/xamarin/controller/controller.iOS/Main.cs b/csharp/xamarin/controller/controller.iOS/Main.cs
new file mode 100644
index 00000000000..70afb4f1b8d
--- /dev/null
+++ b/csharp/xamarin/controller/controller.iOS/Main.cs
@@ -0,0 +1,24 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2018 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 UIKit;
+
+namespace controller.iOS
+{
+ public class Application
+ {
+ // This is the main entry point of the application.
+ static void Main(string[] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main(args, null, "AppDelegate");
+ }
+ }
+}