inraetemplate / INRAETemplate / Platforms / MacCatalyst / Program.cs @ 7b67ff55
Historique | Voir | Annoter | Télécharger (361 octets)
1 |
using ObjCRuntime; |
---|---|
2 |
using UIKit; |
3 |
|
4 |
namespace INRAETemplate; |
5 |
|
6 |
public class Program |
7 |
{ |
8 |
// This is the main entry point of the application. |
9 |
static void Main(string[] args) |
10 |
{ |
11 |
// if you want to use a different Application Delegate class from "AppDelegate" |
12 |
// you can specify it here. |
13 |
UIApplication.Main(args, null, typeof(AppDelegate)); |
14 |
} |
15 |
} |