You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.
< < < < < < < < HEAD : MauiSpark / Platforms / MacCatalyst / Program . cs
using ObjCRuntime ;
using UIKit ;
namespace mastermind
{
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 ) ) ;
}
}
}
= = = = = = = =
using ObjCRuntime ;
using UIKit ;
namespace MauiSpark
{
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 ) ) ;
}
}
}
> > > > > > > > master : MauiSpark / Platforms / iOS / Program . cs