Expression.Goto Method (LabelTarget, Expression)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Creates a GotoExpression representing a "go to" statement. The value passed to the label upon jumping can be specified.
Assembly: System.Core (in System.Core.dll)
'Declaration Public Shared Function Goto ( _ target As LabelTarget, _ value As Expression _ ) As GotoExpression
Parameters
- target
- Type: System.Linq.Expressions.LabelTarget
The LabelTarget that the GotoExpression will jump to.
- value
- Type: System.Linq.Expressions.Expression
The value that will be passed to the associated label upon jumping.
Return Value
Type: System.Linq.Expressions.GotoExpressionA GotoExpression with Kind equal to Goto, the Target property set to target, and value to be passed to the target label upon jumping.
Show: