Files
HomePantry-MAUI/Platforms/iOS/Program.cs
T
2026-07-16 12:25:33 +02:00

16 lines
358 B
C#
Executable File

using ObjCRuntime;
using UIKit;
namespace HomePantry;
public class Program
{
// 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));
}
}