Delegate WhileExpression.Statement
Represents constructor of the loop body.
Namespace: DotNext.Linq.Expressions
Assembly: DotNext.Metaprogramming.dll
Syntax
public delegate Expression WhileExpression.Statement(LabelTarget continueLabel, LabelTarget breakLabel)
Parameters
Type | Name | Description |
---|---|---|
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. |