Beispiel #1
0
        protected override void OnStartup(StartupEventArgs e)
        {
            base.OnStartup(e);

            var bootstrapper = new Bootstrapper();
            bootstrapper.Run();
        }
 protected override void OnStartup(StartupEventArgs e)
 {
     base.OnStartup(e);
     Bootstrapper bs = new Bootstrapper(); 
     bs.Run();
 }
 public App()
 {
     Bootstrapper bs = new Bootstrapper();
     bs.Run(this);
 }