Expression::SwitchCase Method (Expression^, IEnumerable<Expression^>^)

 

Creates a SwitchCase object to be used in a SwitchExpression object.

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

public:
static SwitchCase^ SwitchCase(
	Expression^ body,
	IEnumerable<Expression^>^ testValues
)

Parameters

body
Type: System.Linq.Expressions::Expression^

The body of the case.

testValues
Type: System.Collections.Generic::IEnumerable<Expression^>^

The test values of the case.

Return Value

Type: System.Linq.Expressions::SwitchCase^

The created SwitchCase.

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.

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

No code example is currently available or this language may not be supported.

Universal Windows Platform
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 4.0
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Return to top
Show: