Crossplatform App der Caritas (Versuch).
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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