Main.cs (497B)
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 5 using Foundation; 6 using UIKit; 7 8 namespace AttendanceSupport.iOS 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, typeof(AppDelegate)); 18 } 19 } 20 }