Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

15 lines
356B

  1. using UIKit;
  2. namespace Example.iOS;
  3. public class Application
  4. {
  5. // This is the main entry point of the application.
  6. static void Main(string[] args)
  7. {
  8. // if you want to use a different Application Delegate class from "AppDelegate"
  9. // you can specify it here.
  10. UIApplication.Main(args, null, typeof(AppDelegate));
  11. }
  12. }