CxStatementForEach
Description
- Derived from
- 
CxStatement abstract 
 ICxVariableContainer
 ICxExpressionContainer
 ICxStatementContainer
A statement that loops over an enumerable sequence of elements:
foreach (TItem item in sequence) item.Consume();
ICxExpressionContainer.Expression returns the IEnumerable expression.
ICxStatementContainer.Statement returns the body statement of the loop.
ICxVariableContainer.Variable returns the loop variable declaration, which will never be null.