BridgeTry.Application.Main C# (CSharp) Метод

Main() статический приватный Метод

static private Main ( string args ) : void
args string
Результат void
        static void Main(string[] args) {
            // if you want to use a different Application Delegate class from "AppDelegate"
            // you can specify it here.

            TinyIoCContainer.Current.Register<AppHelper.Data.Manager, Manager>(new Manager());
            AppHelper.Data.ConnectDatabase();//TODO: noo has to be done async - otherwise will kill the app on huge db load due to timeout


            UIApplication.Main(args, null, "AppDelegate");
        }
    }
Application