xamarin-macios/tests/mini/Main.cs

22 строки
403 B
C#

#if XAMCORE_2_0
using UIKit;
#else
using MonoTouch.UIKit;
#endif
namespace mini
{
public class Application
{
#if !__WATCHOS__
// 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, "AppDelegate");
}
#endif
}
}