/// <summary> /// The main entry point for the application. /// </summary> /// <param name="args">Arguments to torch.</param> /// <returns>0 if sucessful, otherwise 1.</returns> public static int Main(string[] args) { AppCommon.PrepareConsoleForLocalization(); Torch torch = new Torch(); return torch.Run(args); }
/// <summary> /// The main entry point for the application. /// </summary> /// <param name="args">Arguments to torch.</param> /// <returns>0 if sucessful, otherwise 1.</returns> public static int Main(string[] args) { Torch torch = new Torch(); return(torch.Run(args)); }