Interface IForEachStatement
For each statement
Namespace: Microsoft.ML.Probabilistic.Compiler.CodeModel
Assembly: Microsoft.ML.Probabilistic.Compiler.dll
Syntax
public interface IForEachStatement : IStatement
Properties
Body
The statements in the body of the for each statement
Declaration
IBlockStatement Body { get; set; }
Property Value
| Type | Description |
|---|---|
| IBlockStatement |
Expression
Expression in the foreach statement
Declaration
IExpression Expression { get; set; }
Property Value
| Type | Description |
|---|---|
| IExpression |
Variable
Variable declaration in the for each statement
Declaration
IVariableDeclaration Variable { get; set; }
Property Value
| Type | Description |
|---|---|
| IVariableDeclaration |