選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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