Just thought I would share something I figured out that might be helpful to some people. So instead of just:
if(input == “menu”)
{
…
}
You can put:
if (input.Equals(“Menu”, System.StringComparison.CurrentCultureIgnoreCase))
{
…
}
-it auto finds the syntax on visual studio thank god lol, but it means that regardless of how they type “menu” eg. Menu, meNU, MEnU etc… itll still work.