Прочитать на английском

Поделиться через


Expression.Continue Метод

Определение

Создает GotoExpression, представляющую инструкцию continue.

Перегрузки

Continue(LabelTarget)

Создает GotoExpression, представляющую инструкцию continue.

Continue(LabelTarget, Type)

Создает GotoExpression, представляющую оператор continue с указанным типом.

Continue(LabelTarget)

Исходный код:
GotoExpression.cs
Исходный код:
GotoExpression.cs
Исходный код:
GotoExpression.cs

Создает GotoExpression, представляющую инструкцию continue.

public static System.Linq.Expressions.GotoExpression Continue (System.Linq.Expressions.LabelTarget target);

Параметры

target
LabelTarget

LabelTarget, к которому будет переходить GotoExpression.

Возвращаемое значение

GotoExpression с Kind равным Continue, свойству Target присвоено значение targetи значение NULL, которое необходимо передать целевой метки при переходе.

Примеры

В следующем примере показано, как создать выражение цикла, использующее метод Continue.

// Add the following directive to your file:
// using System.Linq.Expressions;

// A label that is used by a break statement and a loop.
LabelTarget breakLabel = Expression.Label();

// A label that is used by the Continue statement and the loop it refers to.
LabelTarget continueLabel = Expression.Label();

// This expression represents a Continue statement.
Expression continueExpr = Expression.Continue(continueLabel);

// A variable that triggers the exit from the loop.
ParameterExpression count = Expression.Parameter(typeof(int));

// A loop statement.
Expression loopExpr = Expression.Loop(
    Expression.Block(
        Expression.IfThen(
            Expression.GreaterThan(count, Expression.Constant(3)),
            Expression.Break(breakLabel)
        ),
        Expression.PreIncrementAssign(count),
        Expression.Call(
                    null,
                    typeof(Console).GetMethod("WriteLine", new Type[] { typeof(String) }),
                    Expression.Constant("Loop")
                ),
        continueExpr,
        Expression.PreDecrementAssign(count)
    ),
    breakLabel,
    continueLabel
);

// The following statement first creates an expression tree,
// then compiles it, and then runs it.
// Without the Continue statement, the loop would go on forever.
Expression.Lambda<Action<int>>(loopExpr, count).Compile()(1);

// This code example produces the following output:
//
// Loop
// Loop
// Loop

Применяется к

.NET 9 и другие версии
Продукт Версии
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

Continue(LabelTarget, Type)

Исходный код:
GotoExpression.cs
Исходный код:
GotoExpression.cs
Исходный код:
GotoExpression.cs

Создает GotoExpression, представляющую оператор continue с указанным типом.

public static System.Linq.Expressions.GotoExpression Continue (System.Linq.Expressions.LabelTarget target, Type type);

Параметры

target
LabelTarget

LabelTarget, к которому будет переходить GotoExpression.

type
Type

Значение Type для задания свойства Type равным.

Возвращаемое значение

GotoExpression с Kind равным Continue, свойству Target присвоено значение target, свойству Type присвоено значение typeи значение NULL, передаваемое целевой метки при переходе.

Применяется к

.NET 9 и другие версии
Продукт Версии
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0