CxStatementWhile
Description
- Derived from
-
CxStatement abstract
ICxStatementContainer
ICxExpressionContainer
A statement that loops over a statement block zero or more times:
while (a < 10)
{
b = a;
a++;
...
}
while (a < 10)
a++;
ICxExpressionContainer.Expression returns the expression that represents the loop condition.
ICxStatementContainer.Statement returns the statement that represents the loop body.