Expression.Break 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 instrukcję GotoExpression break reprezentującą.
Przeciążenia
Break(LabelTarget) |
Tworzy instrukcję GotoExpression break reprezentującą. |
Break(LabelTarget, Expression) |
Tworzy instrukcję GotoExpression break reprezentującą. Można określić wartość przekazaną do etykiety po skoku. |
Break(LabelTarget, Type) |
Tworzy reprezentującą GotoExpression instrukcję break z określonym typem. |
Break(LabelTarget, Expression, Type) |
Tworzy reprezentującą GotoExpression instrukcję break z określonym typem. Można określić wartość przekazaną do etykiety po skoku. |
Break(LabelTarget)
- Źródło:
- GotoExpression.cs
- Źródło:
- GotoExpression.cs
- Źródło:
- GotoExpression.cs
Tworzy instrukcję GotoExpression break reprezentującą.
public:
static System::Linq::Expressions::GotoExpression ^ Break(System::Linq::Expressions::LabelTarget ^ target);
public static System.Linq.Expressions.GotoExpression Break (System.Linq.Expressions.LabelTarget target);
static member Break : System.Linq.Expressions.LabelTarget -> System.Linq.Expressions.GotoExpression
Public Shared Function Break (target As LabelTarget) As GotoExpression
Parametry
- target
- LabelTarget
To LabelTarget , do którego GotoExpression będzie skakać.
Zwraca
Wartość GotoExpression z wartością Kind Break ( Target Podział), właściwość ustawiona na target
wartość , a wartość null, która ma zostać przekazana do etykiety docelowej po skoku.
Przykłady
W poniższym przykładzie pokazano, jak utworzyć wyrażenie zawierające LoopExpression obiekt używający Break metody .
// Add the following directive to the file:
// using System.Linq.Expressions;
// Creating a parameter expression.
ParameterExpression value = Expression.Parameter(typeof(int), "value");
// Creating an expression to hold a local variable.
ParameterExpression result = Expression.Parameter(typeof(int), "result");
// Creating a label to jump to from a loop.
LabelTarget label = Expression.Label(typeof(int));
// Creating a method body.
BlockExpression block = Expression.Block(
new[] { result },
Expression.Assign(result, Expression.Constant(1)),
Expression.Loop(
Expression.IfThenElse(
Expression.GreaterThan(value, Expression.Constant(1)),
Expression.MultiplyAssign(result,
Expression.PostDecrementAssign(value)),
Expression.Break(label, result)
),
label
)
);
// Compile and run an expression tree.
int factorial = Expression.Lambda<Func<int, int>>(block, value).Compile()(5);
Console.WriteLine(factorial);
// This code example produces the following output:
//
// 120
' Add the following directive to the file:
' Imports System.Linq.Expressions
' Creating a parameter expression.
Dim value As ParameterExpression =
Expression.Parameter(GetType(Integer), "value")
' Creating an expression to hold a local variable.
Dim result As ParameterExpression =
Expression.Parameter(GetType(Integer), "result")
' Creating a label to jump to from a loop.
Dim label As LabelTarget = Expression.Label(GetType(Integer))
' Creating a method body.
Dim block As BlockExpression = Expression.Block(
New ParameterExpression() {result},
Expression.Assign(result, Expression.Constant(1)),
Expression.Loop(
Expression.IfThenElse(
Expression.GreaterThan(value, Expression.Constant(1)),
Expression.MultiplyAssign(result,
Expression.PostDecrementAssign(value)),
Expression.Break(label, result)
),
label
)
)
' Compile an expression tree and return a delegate.
Dim factorial As Integer =
Expression.Lambda(Of Func(Of Integer, Integer))(block, value).Compile()(5)
Console.WriteLine(factorial)
' This code example produces the following output:
'
' 120
Dotyczy
Break(LabelTarget, Expression)
- Źródło:
- GotoExpression.cs
- Źródło:
- GotoExpression.cs
- Źródło:
- GotoExpression.cs
Tworzy instrukcję GotoExpression break reprezentującą. Można określić wartość przekazaną do etykiety po skoku.
public:
static System::Linq::Expressions::GotoExpression ^ Break(System::Linq::Expressions::LabelTarget ^ target, System::Linq::Expressions::Expression ^ value);
public static System.Linq.Expressions.GotoExpression Break (System.Linq.Expressions.LabelTarget target, System.Linq.Expressions.Expression value);
public static System.Linq.Expressions.GotoExpression Break (System.Linq.Expressions.LabelTarget target, System.Linq.Expressions.Expression? value);
static member Break : System.Linq.Expressions.LabelTarget * System.Linq.Expressions.Expression -> System.Linq.Expressions.GotoExpression
Public Shared Function Break (target As LabelTarget, value As Expression) As GotoExpression
Parametry
- target
- LabelTarget
To LabelTarget , do którego GotoExpression będzie skakać.
- value
- Expression
Wartość, która zostanie przekazana do skojarzonej etykiety po przejściu.
Zwraca
Wartość GotoExpression z wartością Kind Break ( Target Podział), właściwość ustawiona na target
wartość , a value
następnie przekazana do etykiety docelowej po skoku.
Dotyczy
Break(LabelTarget, Type)
- Źródło:
- GotoExpression.cs
- Źródło:
- GotoExpression.cs
- Źródło:
- GotoExpression.cs
Tworzy reprezentującą GotoExpression instrukcję break z określonym typem.
public:
static System::Linq::Expressions::GotoExpression ^ Break(System::Linq::Expressions::LabelTarget ^ target, Type ^ type);
public static System.Linq.Expressions.GotoExpression Break (System.Linq.Expressions.LabelTarget target, Type type);
static member Break : System.Linq.Expressions.LabelTarget * Type -> System.Linq.Expressions.GotoExpression
Public Shared Function Break (target As LabelTarget, type As Type) As GotoExpression
Parametry
- target
- LabelTarget
To LabelTarget , do którego GotoExpression będzie skakać.
Zwraca
Wartość GotoExpression z wartością Kind Break , Target właściwość ustawiona na target
, a właściwość ustawiona Type na type
wartość .
Dotyczy
Break(LabelTarget, Expression, Type)
- Źródło:
- GotoExpression.cs
- Źródło:
- GotoExpression.cs
- Źródło:
- GotoExpression.cs
Tworzy reprezentującą GotoExpression instrukcję break z określonym typem. Można określić wartość przekazaną do etykiety po skoku.
public:
static System::Linq::Expressions::GotoExpression ^ Break(System::Linq::Expressions::LabelTarget ^ target, System::Linq::Expressions::Expression ^ value, Type ^ type);
public static System.Linq.Expressions.GotoExpression Break (System.Linq.Expressions.LabelTarget target, System.Linq.Expressions.Expression value, Type type);
public static System.Linq.Expressions.GotoExpression Break (System.Linq.Expressions.LabelTarget target, System.Linq.Expressions.Expression? value, Type type);
static member Break : System.Linq.Expressions.LabelTarget * System.Linq.Expressions.Expression * Type -> System.Linq.Expressions.GotoExpression
Public Shared Function Break (target As LabelTarget, value As Expression, type As Type) As GotoExpression
Parametry
- target
- LabelTarget
To LabelTarget , do którego GotoExpression będzie skakać.
- value
- Expression
Wartość, która zostanie przekazana do skojarzonej etykiety po przejściu.
Zwraca
Wartość z wartością Kind Break , Target właściwość ustawiona na target
, Type właściwość ustawiona na type
, a value
następnie przekazana do etykiety docelowej po skoku.GotoExpression