Crossplatform App der Caritas (Versuch).
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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