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.
 
 
 
 

17 lignes
414 B

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