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