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

Main.cs « Newtonsoft.Json.Test « monotouch - github.com/mono/illinker-test-assets.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ca004fd3755a65f895bbbb9f3ac29b4e4b9c9e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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");
		}
	}
}