/// <summary>
 /// Removes the command with the specified name from the <see cref="CrestronConsole"/> and the <see cref="Manager"/>'s internal dictionary of commands.
 /// </summary>
 /// <param name="commandName">The name of the <see cref="GlobalCommand"/> to remove.</param>
 /// <returns><see langword="true"/> if the command was removed, otherwise <see langword="false"/>.</returns>
 public static bool RemoveCrestronConsoleCommand(string commandName)
 {
     CrestronConsole.RemoveConsoleCommand(commandName);
     return(consoleCommandNames.Remove(commandName));
 }