Exemplo n.º 1
0
 /// <summary>
 /// Constructs an instance of a <see cref="AssemblyController"/>, which controls the
 /// assembly process.
 /// </summary>
 /// <param name="args">The command line arguments.</param>
 public AssemblyController(string[] args)
 {
     Assembler.Initialize(args);
     _assemblers = new List <AssemblerBase>();
 }
Exemplo n.º 2
0
 /// <summary>
 /// Constructs an instance of a <see cref="AssemblyController"/>, which controls the
 /// assembly process.
 /// </summary>
 public AssemblyController()
 {
     Assembler.Initialize();
     _assemblers = new List <AssemblerBase>();
 }