Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

16 lines
337B

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