Expression.SwitchCase Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Tworzy obiekt, który SwitchCase ma być używany w SwitchExpression obiekcie.
Przeciążenia
SwitchCase(Expression, Expression[]) |
Tworzy obiekt SwitchCase do użycia w obiekcie SwitchExpression. |
SwitchCase(Expression, IEnumerable<Expression>) |
Tworzy obiekt, który SwitchCase ma być używany w SwitchExpression obiekcie. |
SwitchCase(Expression, Expression[])
- Źródło:
- SwitchCase.cs
- Źródło:
- SwitchCase.cs
- Źródło:
- SwitchCase.cs
Tworzy obiekt SwitchCase do użycia w obiekcie SwitchExpression.
public:
static System::Linq::Expressions::SwitchCase ^ SwitchCase(System::Linq::Expressions::Expression ^ body, ... cli::array <System::Linq::Expressions::Expression ^> ^ testValues);
public static System.Linq.Expressions.SwitchCase SwitchCase (System.Linq.Expressions.Expression body, params System.Linq.Expressions.Expression[] testValues);
static member SwitchCase : System.Linq.Expressions.Expression * System.Linq.Expressions.Expression[] -> System.Linq.Expressions.SwitchCase
Public Shared Function SwitchCase (body As Expression, ParamArray testValues As Expression()) As SwitchCase
Parametry
- body
- Expression
Treść sprawy.
- testValues
- Expression[]
Wartości testowe przypadku.
Zwraca
Utworzony element SwitchCase.
Dotyczy
SwitchCase(Expression, IEnumerable<Expression>)
- Źródło:
- SwitchCase.cs
- Źródło:
- SwitchCase.cs
- Źródło:
- SwitchCase.cs
Tworzy obiekt, który SwitchCase ma być używany w SwitchExpression obiekcie.
public:
static System::Linq::Expressions::SwitchCase ^ SwitchCase(System::Linq::Expressions::Expression ^ body, System::Collections::Generic::IEnumerable<System::Linq::Expressions::Expression ^> ^ testValues);
public static System.Linq.Expressions.SwitchCase SwitchCase (System.Linq.Expressions.Expression body, System.Collections.Generic.IEnumerable<System.Linq.Expressions.Expression> testValues);
static member SwitchCase : System.Linq.Expressions.Expression * seq<System.Linq.Expressions.Expression> -> System.Linq.Expressions.SwitchCase
Public Shared Function SwitchCase (body As Expression, testValues As IEnumerable(Of Expression)) As SwitchCase
Parametry
- body
- Expression
Treść sprawy.
- testValues
- IEnumerable<Expression>
Wartości testowe przypadku.
Zwraca
Utworzony element SwitchCase.
Przykłady
W poniższym przykładzie pokazano, jak utworzyć wyrażenie reprezentujące instrukcję switch, która ma przypadek domyślny.
// 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
' 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
Uwagi
Wszystkie SwitchCase obiekty w SwitchExpression obiekcie muszą mieć ten sam typ, chyba że SwitchExpression typ ma typ void
.
Każdy SwitchCase obiekt ma niejawną break
instrukcję, co oznacza, że nie ma niejawnego upadku z jednej etykiety przypadku do innej.