CxStatementFor
Description
- Derived from
-
CxStatement abstract
ICxVariableContainer
ICxStatementContainer
ICxExpressionUsageProvider
A statement that loops over a body statement zero or more times:
for (int i = 0; i < n; i++) a += i; for (; a < n;) ++a;
ICxStatementContainer.Statement returns the body statement of the loop.
ICxVariableContainer.Variable returns the loop variable definition.