CxStatementSwitch
Description
- Derived from
-
CxStatement abstract
ICxExpressionContainer
A statement that selectively executes a statement list, based on a choice of values:
switch (a)
{
case 1:
case 2:
break;
default:
a = 1;
break;
}
ICxExpressionContainer.Expression returns the switch value expression.