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

15 lines
356B

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