The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
Expression::Switch Method (Expression^, Expression^, MethodInfo^, array<SwitchCase^>^)
.NET Framework (current version)
Creates a SwitchExpression that represents a switch statement that has a default case.
Assembly: System.Core (in System.Core.dll)
public: static SwitchExpression^ Switch( Expression^ switchValue, Expression^ defaultBody, MethodInfo^ comparison, ... array<SwitchCase^>^ cases )
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:
array<System.Linq.Expressions::SwitchCase^>^
The set of cases for this switch expression.
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
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
Show: