The simplest approach would be to convert the user entered string to uppercase (or lowercase if you prefer).
You’ll then only have to check for “MENU” and none of the other crazy variants that users might enter.
Fantastic, that did just the trick! Thank you very much for the help. Input.ToUpper/ToLower is gonna be very useful as I know people type in their own way, this essentially acts as a catch all.