Expression.Loop Method (Expression, LabelTarget, LabelTarget)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Creates a LoopExpression with the given body.
Namespace: System.Linq.Expressions
Assembly: System.Core (in System.Core.dll)
Syntax
'Declaration
Public Shared Function Loop ( _
body As Expression, _
break As LabelTarget, _
continue As LabelTarget _
) As LoopExpression
public static LoopExpression Loop(
Expression body,
LabelTarget break,
LabelTarget continue
)
Parameters
- body
Type: System.Linq.Expressions.Expression
The body of the loop.
- break
Type: System.Linq.Expressions.LabelTarget
The break target used by the loop body.
- continue
Type: System.Linq.Expressions.LabelTarget
The continue target used by the loop body.
Return Value
Type: System.Linq.Expressions.LoopExpression
The created LoopExpression.
Version Information
Silverlight
Supported in: 5, 4
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.