using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AutomatedROMTools { /// /// The Main Program Class. /// class Program { static void Main(string[] args) { // Create a new program object. AutomatedROMTools ART = new AutomatedROMTools(); // Input the variables passed from the command line arguments. ART.SetVariablesFromCLI(args); // Print the version. ART.PrintVersion(); // Process the command switch. ART.ProcessCommandSwitch(); // Output the log to a text file. ART.SaveLog(); } } }