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.

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