Example #1
0
 public CLIManager(CLIManagerOptions mgrConfig)
 {
     _options = mgrConfig;
     _argConfig = CreateNewArgConfig();
     _arguments = new Dictionary<string, string>();
 }
Example #2
0
 public CLIManager()
 {
     _options = CLIManagerOptions.GetDefaultOptions();
     _argConfig = CreateNewArgConfig();
     _arguments = new Dictionary<string, string>();
 }