Run() 공개 메소드

public Run ( ) : void
리턴 void
예제 #1
0
파일: Program.cs 프로젝트: nandub/DeOps
 static void Main(string[] args)
 {
     try
     {
         using (var app = new ConsoleApp())
             app.Run();
     }
     catch (Exception ex)
     {
         Console.WriteLine("App Error: " + ex.Message);
     }
 }
예제 #2
0
파일: Program.cs 프로젝트: RoelofSol/DeOps
 static void Main(string[] args)
 {
     try
     {
         using (var app = new ConsoleApp())
             app.Run();
     }
     catch (Exception ex)
     {
         Console.WriteLine("App Error: " + ex.Message);
     }
 }