Command line hosting service.
Esempio n. 1
0
 public SuperConsole(CommandLine commandLine, bool colorful)
     : base(colorful)
 {
     ContractUtils.RequiresNotNull(commandLine, "commandLine");
     _commandLine = commandLine;
 }
Esempio n. 2
0
 private static IConsole CreateSuperConsole(CommandLine commandLine, bool isColorful)
 {
     return(new SuperConsole(commandLine, isColorful));
 }