Exemplo n.º 1
0
 static void Main(string[] args)
 {
     try
     {
         batcher = new Dynasty();
         batcher.Optimize();
         Console.ReadLine();
     }
     catch (Exception ex)
     {
         Logger.Error(ex);
     }
 }
Exemplo n.º 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);
     }
 }