Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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. }