public static int Main(string[] args) { EnderTool tool = new EnderTool(); try { tool.ProcessCommandLine(args); tool.Execute(); return(tool.HasOutputErrors ? 1 : 0); } catch (Exception e) { while (e != null) { ConsoleUtility.WriteMessage(MessageType.Error, e.Message); e = e.InnerException; } return(1); } }
public static int Main(string[] args) { EnderTool tool = new EnderTool(); try { tool.ProcessCommandLine(args); tool.Execute(); return (tool.HasOutputErrors ? 1 : 0); } catch (Exception e) { while (e != null) { ConsoleUtility.WriteMessage(MessageType.Error, e.Message); e = e.InnerException; } return 1; } }