MonoMobile.Views.MonoMobileApplication.Run C# (CSharp) Method

Run() public static method

public static Run ( string title, Type mainViewType, string args ) : void
title string
mainViewType System.Type
args string
return void
		public static void Run(string title, Type mainViewType, string[] args)
		{
			Title = title;
			ViewTypes = new Type[] { mainViewType };

			UIApplication.Main(args, "MonoMobileApplication", "MonoMobileAppDelegate");
		}

Same methods

MonoMobileApplication::Run ( string delegateName, string args ) : void