public CommandManager(string[] i_Commands)
 {
     this._Commands             = new CommandCollection();
     this._IsCommandInitialized = false;
     this.AnalyzeCommand(i_Commands);
 }
 public CommandManager()
 {
     this._Commands             = new CommandCollection();
     this._IsCommandInitialized = false;
 }