Run() public method

public Run ( ) : void
return void
Example #1
0
 static void Main(string[] arguments)
 {
     Program program = new Program();
     if (!program.Initialise())
         return;
     try
     {
         program.Run();
     }
     catch (Exception exception)
     {
         DumpAndTerminate(exception);
     }
 }
Example #2
0
 static void Main(string[] arguments)
 {
     try
     {
         Program program = new Program();
         program.Run();
     }
     catch (Exception exception)
     {
         DumpAndTerminate(exception);
     }
 }