示例#1
0
文件: Program.cs 项目: xul8tr/CSharp
 /// <summary>
 /// The main method of the application.
 /// </summary>
 /// <returns></returns>
 static int Main()
 {
     try {
         return(new CommandLineParameters().Execute());
     } catch (Exception e) {
         Console.WriteLine("Error in application");
         Console.WriteLine(BaseException.ExceptionToString(e));
         return(1);
     }
 }