Skip to content

Instantly share code, notes, and snippets.

@jssuthahar
Created November 23, 2021 04:16
MAUI Appdelegate.cs
using Foundation;
using Microsoft.Maui;
using Microsoft.Maui.Hosting;
namespace FirstMUAIApp
{
[Register("AppDelegate")]
public class AppDelegate : MauiUIApplicationDelegate
{
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment