Run() public method

public Run ( ) : void
return void
Ejemplo n.º 1
0
 static void Main(string[] args)
 {
     try
     {
         using (var app = new ConsoleApp())
             app.Run();
     }
     catch (Exception ex)
     {
         Console.WriteLine("App Error: " + ex.Message);
     }
 }
Ejemplo n.º 2
0
 static void Main(string[] args)
 {
     try
     {
         using (var app = new ConsoleApp())
             app.Run();
     }
     catch (Exception ex)
     {
         Console.WriteLine("App Error: " + ex.Message);
     }
 }