Main.cs 478 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using Foundation;
  5. using UIKit;
  6. namespace HiTA.iOS
  7. {
  8. public class Application
  9. {
  10. // This is the main entry point of the application.
  11. static void Main(string[] args)
  12. {
  13. // if you want to use a different Application Delegate class from "AppDelegate"
  14. // you can specify it here.
  15. UIApplication.Main(args, null, "AppDelegate");
  16. }
  17. }
  18. }