i had another look and realised its pretty much multiple choice so the string class may not be that simpler. however use of a switch statement would clean up the code a bit
switch (variable)
{
case value1:
{
// process code if variable == value1
}
break;
case value2:
{
// process code if variable == value 2
}
default:
{
// no matches, process code if variable did equal any of the cases
}
break;
};
again a google seach for the switch statement should proove useful.