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