Delegate ForExpression.LoopBuilder.Statement
Represents constructor of loop body.
Namespace: DotNext.Linq.Expressions
Assembly: DotNext.Metaprogramming.dll
Syntax
public delegate Expression Statement(ParameterExpression loopVar, LabelTarget continueLabel, LabelTarget breakLabel);
  Parameters
| Type | Name | Description | 
|---|---|---|
| ParameterExpression | loopVar | The loop variable.  | 
      
| LabelTarget | continueLabel | A label that can be used to produce Continue(LabelTarget) expression.  | 
      
| LabelTarget | breakLabel | A label that can be used to produce Break(LabelTarget) expression.  | 
      
Returns
| Type | Description | 
|---|---|
| Expression | The loop body.  |