Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatting-changes
[mono.git] / mcs / tests / projects / MonoTouch / Main.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4
5 using MonoTouch.Foundation;
6 using MonoTouch.UIKit;
7
8 namespace TestMcs
9 {
10         public class Application
11         {
12                 // This is the main entry point of the application.
13                 static void Main (string[] args)
14                 {
15                         // if you want to use a different Application Delegate class from "AppDelegate"
16                         // you can specify it here.
17                         UIApplication.Main (args, null, "AppDelegate");
18                 }
19         }
20 }