startit/Emne 3/AvaloniaApplication1/AvaloniaApplication1.iOS/Main.cs

14 lines
368 B
C#
Raw Normal View History

2024-12-04 11:07:21 +01:00
using UIKit;
namespace AvaloniaApplication1.iOS;
public class Application
{
// This is the main entry point of the application.
static void Main(string[] args)
{
// if you want to use a different Application Delegate class from "AppDelegate"
// you can specify it here.
UIApplication.Main(args, null, typeof(AppDelegate));
}
}