VS 2013 中的标准 Mvc Web 应用程序模板有:
在 Startup.cs 中:
[assembly: OwinStartupAttribute(typeof(myApp.Startup))]
以及在 Global.asax.cs 中:
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{ //...
}
}
请问执行的顺序是什么,是否有保证?