Expression.Switch Method (Expression, Expression, array<SwitchCase[])

Microsoft Silverlight will reach end of support after October 2021. Learn more.

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

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

Syntax

'Declaration
Public Shared Function Switch ( _
    switchValue As Expression, _
    defaultBody As Expression, _
    ParamArray cases As SwitchCase() _
) As SwitchExpression
public static SwitchExpression Switch(
    Expression switchValue,
    Expression defaultBody,
    params SwitchCase[] cases
)

Parameters

Remarks

All SwitchCase objects in a SwitchExpression object must have the same type, unless the SwitchExpression has the type void.

Each SwitchCase object has an implicit break statement, which means that there is no implicit fall through from one case label to another.

If switchValue does not match any of the cases, the default case represented by defaultBody is run.

Examples

The following example demonstrates how to create an expression that represents a swtich statement that has a default case.

' Add the following directive to the file:
' Imports System.Linq.Expressions

' An expression that represents the switch value.
Dim switchValue As ConstantExpression = Expression.Constant(3)

' This expression represents a switch statement 
' that has a default case.
Dim switchExpr As SwitchExpression =
Expression.Switch(
    switchValue,
    Expression.Call(
                Nothing,
                GetType(Console).GetMethod("WriteLine", New Type() {GetType(String)}),
                Expression.Constant("Default")
            ),
    New SwitchCase() {
        Expression.SwitchCase(
            Expression.Call(
                Nothing,
                GetType(Console).GetMethod("WriteLine", New Type() {GetType(String)}),
                Expression.Constant("First")
            ),
            Expression.Constant(1)
        ),
        Expression.SwitchCase(
            Expression.Call(
                Nothing,
                GetType(Console).GetMethod("WriteLine", New Type() {GetType(String)}),
                Expression.Constant("Second")
            ),
            Expression.Constant(2)
        )
    }
)

' The following statement first creates an expression tree,
' then compiles it, and then runs it.
Expression.Lambda(Of Action)(switchExpr).Compile()()

' This code example produces the following output:
'
' Default
// Add the following directive to the file:
// using System.Linq.Expressions;  

// An expression that represents the switch value.
ConstantExpression switchValue = Expression.Constant(3);

// This expression represents a switch statement 
// that has a default case.
SwitchExpression switchExpr =
    Expression.Switch(
        switchValue,
        Expression.Call(
                    null,
                    typeof(Console).GetMethod("WriteLine", new Type[] { typeof(String) }),
                    Expression.Constant("Default")
                ),
        new SwitchCase[] {
               Expression.SwitchCase(
                   Expression.Call(
                       null,
                       typeof(Console).GetMethod("WriteLine", new Type[] { typeof(String) }),
                       Expression.Constant("First")
                   ),
                   Expression.Constant(1)
               ),
               Expression.SwitchCase(
                   Expression.Call(
                       null,
                       typeof(Console).GetMethod("WriteLine", new Type[] { typeof(String) }),
                       Expression.Constant("Second")
                   ),
                   Expression.Constant(2)
               )
           }
    );

// The following statement first creates an expression tree,
// then compiles it, and then runs it.
Expression.Lambda<Action>(switchExpr).Compile()();

// This code example produces the following output:
//
// Default

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.