示例#1
0
文件: Program.cs 项目: hibri/Mint
 private static void TryRun(IController controller)
 {
     try {
         controller.Index();
     } catch (Exception e) {
         DieBecause("An error has occurred: {0}", e.Message);
     }
 }