Crossplatform App der Caritas (Versuch).
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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