Beispiel #1
0
 public static void Main()
 {
     try
     {
         //try
         //{
         System.Net.ServicePointManager.DefaultConnectionLimit = 100;
         System.Net.ServicePointManager.Expect100Continue      = false;
         System.Net.ServicePointManager.ServerCertificateValidationCallback = delegate { return(true); };
         //}
         //catch { }
         SplashScreen splashScreen = new SplashScreen("images/slash.png");
         splashScreen.Show(true);
         MoeLoader.App app = new MoeLoader.App();
         app.InitializeComponent();
         app.Run();
     }
     catch (Exception ex)
     {
         try
         {
             System.IO.File.WriteAllText("moe_fatal.txt", ex.ToString());
             System.Media.SystemSounds.Asterisk.Play();
             (new ErrForm(ex.ToString())).ShowDialog();
             System.Diagnostics.Process.GetCurrentProcess().Kill();
         }
         catch { }
     }
 }
Beispiel #2
0
 public static void Main()
 {
     try
     {
         //try
         //{
         System.Net.ServicePointManager.DefaultConnectionLimit = 100;
         System.Net.ServicePointManager.Expect100Continue = false;
         System.Net.ServicePointManager.ServerCertificateValidationCallback = delegate { return true; };
         //}
         //catch { }
         SplashScreen splashScreen = new SplashScreen("images/slash.png");
         splashScreen.Show(true);
         MoeLoader.App app = new MoeLoader.App();
         app.InitializeComponent();
         app.Run();
     }
     catch (Exception ex)
     {
         try
         {
             System.IO.File.WriteAllText("moe_fatal.txt", ex.ToString());
             System.Media.SystemSounds.Asterisk.Play();
             (new ErrForm(ex.ToString())).ShowDialog();
             System.Diagnostics.Process.GetCurrentProcess().Kill();
         }
         catch { }
     }
 }