Expression.Loop 메서드

정의

LoopExpression을 만듭니다.

오버로드

Loop(Expression)

지정된 본문을 사용하여 LoopExpression을 만듭니다.

Loop(Expression, LabelTarget)

지정된 본문과 break 대상을 사용하여 LoopExpression을 만듭니다.

Loop(Expression, LabelTarget, LabelTarget)

지정된 본문을 사용하여 LoopExpression을 만듭니다.

Loop(Expression)

Source:
LoopExpression.cs
Source:
LoopExpression.cs
Source:
LoopExpression.cs

지정된 본문을 사용하여 LoopExpression을 만듭니다.

public:
 static System::Linq::Expressions::LoopExpression ^ Loop(System::Linq::Expressions::Expression ^ body);
public static System.Linq.Expressions.LoopExpression Loop (System.Linq.Expressions.Expression body);
static member Loop : System.Linq.Expressions.Expression -> System.Linq.Expressions.LoopExpression
Public Shared Function Loop (body As Expression) As LoopExpression

매개 변수

body
Expression

루프의 본문입니다.

반환

만든 LoopExpression입니다.

적용 대상

Loop(Expression, LabelTarget)

Source:
LoopExpression.cs
Source:
LoopExpression.cs
Source:
LoopExpression.cs

지정된 본문과 break 대상을 사용하여 LoopExpression을 만듭니다.

public:
 static System::Linq::Expressions::LoopExpression ^ Loop(System::Linq::Expressions::Expression ^ body, System::Linq::Expressions::LabelTarget ^ break);
public static System.Linq.Expressions.LoopExpression Loop (System.Linq.Expressions.Expression body, System.Linq.Expressions.LabelTarget break);
public static System.Linq.Expressions.LoopExpression Loop (System.Linq.Expressions.Expression body, System.Linq.Expressions.LabelTarget? break);
static member Loop : System.Linq.Expressions.Expression * System.Linq.Expressions.LabelTarget -> System.Linq.Expressions.LoopExpression
Public Shared Function Loop (body As Expression, break As LabelTarget) As LoopExpression

매개 변수

body
Expression

루프의 본문입니다.

break
LabelTarget

루프 본문에서 사용하는 break 대상입니다.

반환

만든 LoopExpression입니다.

예제

다음 예제에서는 개체를 포함하는 블록 식을 만드는 방법을 보여 줍니다 LoopExpression .

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

적용 대상

Loop(Expression, LabelTarget, LabelTarget)

Source:
LoopExpression.cs
Source:
LoopExpression.cs
Source:
LoopExpression.cs

지정된 본문을 사용하여 LoopExpression을 만듭니다.

public:
 static System::Linq::Expressions::LoopExpression ^ Loop(System::Linq::Expressions::Expression ^ body, System::Linq::Expressions::LabelTarget ^ break, System::Linq::Expressions::LabelTarget ^ continue);
public static System.Linq.Expressions.LoopExpression Loop (System.Linq.Expressions.Expression body, System.Linq.Expressions.LabelTarget break, System.Linq.Expressions.LabelTarget continue);
public static System.Linq.Expressions.LoopExpression Loop (System.Linq.Expressions.Expression body, System.Linq.Expressions.LabelTarget? break, System.Linq.Expressions.LabelTarget? continue);
static member Loop : System.Linq.Expressions.Expression * System.Linq.Expressions.LabelTarget * System.Linq.Expressions.LabelTarget -> System.Linq.Expressions.LoopExpression
Public Shared Function Loop (body As Expression, break As LabelTarget, continue As LabelTarget) As LoopExpression

매개 변수

body
Expression

루프의 본문입니다.

break
LabelTarget

루프 본문에서 사용하는 break 대상입니다.

continue
LabelTarget

루프 본문에서 사용하는 continue 대상입니다.

반환

만든 LoopExpression입니다.

적용 대상