Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

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