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 do...
if(new[]{ "STOP", "END", "NO", "YES" }.Contains(input.Text.ToUpper()))