given the following code:
enum Suit { Diamonds, Hearts, Clubs, Spades };
somebody is coding a switch statement like this:
Suit suit = getUserInput();
switch(suit)
Visual Asssist should automatically generate all cases like this:
Suit suit = getUserInput();
switch(suit)
{
case Diamonds:
break;
case Hearts:
break;
case Clubs:
break;
case Spades:
break;
default:
break;
}