Bagikan melalui


Expression.Break Metode

Definisi

Membuat pernyataan pemisah yang GotoExpression mewakili.

Overload

Break(LabelTarget)

Membuat pernyataan pemisah yang GotoExpression mewakili.

Break(LabelTarget, Expression)

Membuat pernyataan pemisah yang GotoExpression mewakili. Nilai yang diteruskan ke label saat melompat dapat ditentukan.

Break(LabelTarget, Type)

Membuat pernyataan pemisah yang GotoExpression mewakili dengan jenis yang ditentukan.

Break(LabelTarget, Expression, Type)

Membuat pernyataan pemisah yang GotoExpression mewakili dengan jenis yang ditentukan. Nilai yang diteruskan ke label saat melompat dapat ditentukan.

Break(LabelTarget)

Sumber:
GotoExpression.cs
Sumber:
GotoExpression.cs
Sumber:
GotoExpression.cs

Membuat pernyataan pemisah yang GotoExpression mewakili.

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

Parameter

target
LabelTarget

Yang LabelTargetGotoExpression akan melompat ke.

Mengembalikan

GotoExpression dengan sama dengan Kind Putuskan, Target properti diatur ke target, dan nilai null yang akan diteruskan ke label target saat melompat.

Contoh

Contoh berikut menunjukkan cara membuat ekspresi yang berisi LoopExpression objek yang menggunakan Break metode .

// 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

Berlaku untuk

Break(LabelTarget, Expression)

Sumber:
GotoExpression.cs
Sumber:
GotoExpression.cs
Sumber:
GotoExpression.cs

Membuat pernyataan pemisah yang GotoExpression mewakili. Nilai yang diteruskan ke label saat melompat dapat ditentukan.

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

Parameter

target
LabelTarget

Yang LabelTargetGotoExpression akan melompat ke.

value
Expression

Nilai yang akan diteruskan ke label terkait saat melompat.

Mengembalikan

GotoExpression dengan sama dengan Kind Putuskan, Target properti diatur ke target, dan value akan diteruskan ke label target saat melompat.

Berlaku untuk

Break(LabelTarget, Type)

Sumber:
GotoExpression.cs
Sumber:
GotoExpression.cs
Sumber:
GotoExpression.cs

Membuat pernyataan pemisah yang GotoExpression mewakili dengan jenis yang ditentukan.

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

Parameter

target
LabelTarget

Yang LabelTargetGotoExpression akan melompat ke.

type
Type

Untuk Type mengatur properti sama Type dengan.

Mengembalikan

GotoExpression dengan sama dengan Kind Putuskan, Target properti diatur ke target, dan Type properti diatur ke type.

Berlaku untuk

Break(LabelTarget, Expression, Type)

Sumber:
GotoExpression.cs
Sumber:
GotoExpression.cs
Sumber:
GotoExpression.cs

Membuat pernyataan pemisah yang GotoExpression mewakili dengan jenis yang ditentukan. Nilai yang diteruskan ke label saat melompat dapat ditentukan.

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

Parameter

target
LabelTarget

Yang LabelTargetGotoExpression akan melompat ke.

value
Expression

Nilai yang akan diteruskan ke label terkait saat melompat.

type
Type

Untuk Type mengatur properti sama Type dengan.

Mengembalikan

GotoExpression dengan sama dengan Kind Putuskan, Target properti diatur ke target, Type properti diatur ke type, dan value akan diteruskan ke label target saat melompat.

Berlaku untuk