/// <summary> /// The entry point of the program, where the program control starts and ends. /// </summary> /// <param name="args">The command-line arguments.</param> public static void Main(string[] args) { var p = new DxProcessor(); p.AssemblyFile = args[0]; p.Execute(); }