Beispiel #1
0
 static void Main(string[] args)
 {
     try
     {
         batcher = new Dynasty();
         batcher.Optimize();
         Console.ReadLine();
     }
     catch (Exception ex)
     {
         Logger.Error(ex);
     }
 }
Beispiel #2
0
 static void Main(string[] args)
 {
     try
     {
         AppDomain.CurrentDomain.ProcessExit += new EventHandler(CurrentDomain_ProcessExit);
         batcher = new Dynasty();
         batcher.Optimize();
         Console.ReadLine();
     }
     catch (Exception ex)
     {
         Logger.Error(ex);
     }
 }