I have this:
if (input.Text.ToUpper() == \"STOP\")
But there are so many possible values that I wouldn\'t be able to specify them all sepa
You can hold an array of the possible words and match it with the Contains method:
Contains
string[] validInput = new string[] { "STOP", "END", "NO", "YES" }; // input is the input you have if (validInput.Contains(input.Text.ToUpper())) { // Do something }