public string GetHelp(string commandId, bool verbose) { // does the command exist? if (AlternateCommandNames.ContainsKey(commandId)) { CommandInterface command = Commands[AlternateCommandNames[commandId]]; return(command.ShowInHelpAndAutocomplete ? command.Help(commandId, verbose) : ""); } return(""); }