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

github.com/mono/illinker-test-assets.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'monotouch/Newtonsoft.Json.Test/Main.cs')
-rw-r--r--monotouch/Newtonsoft.Json.Test/Main.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/monotouch/Newtonsoft.Json.Test/Main.cs b/monotouch/Newtonsoft.Json.Test/Main.cs
new file mode 100644
index 0000000..8ca004f
--- /dev/null
+++ b/monotouch/Newtonsoft.Json.Test/Main.cs
@@ -0,0 +1,16 @@
+using UIKit;
+
+namespace Newtonsoft.Json.Test {
+ public class Application {
+ // This is the main entry point of the application.
+ static void Main (string [] args)
+ {
+ new EmptyClass ();
+ JsonConvert.DeserializeObject<EmptyClass> ("{}");
+
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main (args, null, "AppDelegate");
+ }
+ }
+}