enum - error
Xcode4-OTHER, Mac OS X (10.6.7)
Review the language documentation for the switch statement.
This is a sample of the correct usage:
enum RequestAction {Play, Options, Help};
int variable = Play;
switch (variable)
{
case Play:
{
// Do something.
break;
}
caseOptions:
{
// Do something else.
break;
}
case Help:
{
// Do something else.
break;
}
default:
{
// Do something when variable is not Play, Options or Help.
break;
}
}
Adding the "int variable = Play;" fixed the errors.
Thank you for your help.
enum - error