Crossplatform App der Caritas (Versuch).
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.

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