Statistiques
| Branche: | Révision:

rfid-cb / CodeBarreRFID / Platforms / MacCatalyst / Program.cs @ 0f2b4298

Historique | Voir | Annoter | Télécharger (434 octets)

1
using ObjCRuntime;
2
using UIKit;
3

    
4
namespace CodeBarreRFID
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
    }
16
}