Switch Method (Expression, Expression, MethodInfo, IEnumerable(SwitchCase))

Expression.Switch Method (Expression, Expression, MethodInfo, IEnumerable(Of SwitchCase))

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Creates a SwitchExpression that represents a switch statement that has a default case.

Namespace:  System.Linq.Expressions
Assembly:  System.Core (in System.Core.dll)

'Declaration
Public Shared Function Switch ( _
	switchValue As Expression, _
	defaultBody As Expression, _
	comparison As MethodInfo, _
	cases As IEnumerable(Of SwitchCase) _
) As SwitchExpression

Parameters

switchValue
Type: System.Linq.Expressions.Expression
The value to be tested against each case.
defaultBody
Type: System.Linq.Expressions.Expression
The result of the switch if switchValue does not match any of the cases.
comparison
Type: System.Reflection.MethodInfo
The equality comparison method to use.
cases
Type: System.Collections.Generic.IEnumerable(Of SwitchCase)
The set of cases for this switch expression.

Windows Phone OS

Supported in: 8.1, 8.0

Show:
© 2017 Microsoft