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

17 行
280B

  1. using System;
  2. using Microsoft.Maui;
  3. using Microsoft.Maui.Hosting;
  4. namespace MaUI;
  5. class Program : MauiApplication
  6. {
  7. protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
  8. static void Main(string[] args)
  9. {
  10. var app = new Program();
  11. app.Run(args);
  12. }
  13. }