Expression.Goto メソッド

定義

go to ステートメントを表す GotoExpression を作成します。

オーバーロード

Goto(LabelTarget, Expression, Type)

型を指定して、go to ステートメントを表す GotoExpression を作成します。 ジャンプ時にラベルに渡す値を指定できます。

Goto(LabelTarget, Type)

型を指定して、go to ステートメントを表す GotoExpression を作成します。

Goto(LabelTarget)

go to ステートメントを表す GotoExpression を作成します。

Goto(LabelTarget, Expression)

go to ステートメントを表す GotoExpression を作成します。 ジャンプ時にラベルに渡す値を指定できます。

Goto(LabelTarget, Expression, Type)

ソース:
GotoExpression.cs
ソース:
GotoExpression.cs
ソース:
GotoExpression.cs

型を指定して、go to ステートメントを表す GotoExpression を作成します。 ジャンプ時にラベルに渡す値を指定できます。

public:
 static System::Linq::Expressions::GotoExpression ^ Goto(System::Linq::Expressions::LabelTarget ^ target, System::Linq::Expressions::Expression ^ value, Type ^ type);
public static System.Linq.Expressions.GotoExpression Goto (System.Linq.Expressions.LabelTarget target, System.Linq.Expressions.Expression value, Type type);
public static System.Linq.Expressions.GotoExpression Goto (System.Linq.Expressions.LabelTarget target, System.Linq.Expressions.Expression? value, Type type);
static member Goto : System.Linq.Expressions.LabelTarget * System.Linq.Expressions.Expression * Type -> System.Linq.Expressions.GotoExpression
Public Shared Function Goto (target As LabelTarget, value As Expression, type As Type) As GotoExpression

パラメーター

target
LabelTarget

LabelTarget のジャンプ先の GotoExpression

value
Expression

ジャンプ時に関連付けられているラベルに渡される値。

type
Type

Type プロパティを等しく設定する Type

戻り値

Goto と等しい GotoExpressionKind に設定された Target プロパティ、target に設定された Type プロパティ、およびジャンプ時にジャンプ先のラベルに渡される type を含む value

適用対象

Goto(LabelTarget, Type)

ソース:
GotoExpression.cs
ソース:
GotoExpression.cs
ソース:
GotoExpression.cs

型を指定して、go to ステートメントを表す GotoExpression を作成します。

public:
 static System::Linq::Expressions::GotoExpression ^ Goto(System::Linq::Expressions::LabelTarget ^ target, Type ^ type);
public static System.Linq.Expressions.GotoExpression Goto (System.Linq.Expressions.LabelTarget target, Type type);
static member Goto : System.Linq.Expressions.LabelTarget * Type -> System.Linq.Expressions.GotoExpression
Public Shared Function Goto (target As LabelTarget, type As Type) As GotoExpression

パラメーター

target
LabelTarget

LabelTarget のジャンプ先の GotoExpression

type
Type

Type プロパティを等しく設定する Type

戻り値

Goto と等しい GotoExpression、指定された値に設定された Kind プロパティ、Target に設定された Type プロパティ、およびジャンプ時にジャンプ先のラベルに渡される null 値を含む type

適用対象

Goto(LabelTarget)

ソース:
GotoExpression.cs
ソース:
GotoExpression.cs
ソース:
GotoExpression.cs

go to ステートメントを表す GotoExpression を作成します。

public:
 static System::Linq::Expressions::GotoExpression ^ Goto(System::Linq::Expressions::LabelTarget ^ target);
public static System.Linq.Expressions.GotoExpression Goto (System.Linq.Expressions.LabelTarget target);
static member Goto : System.Linq.Expressions.LabelTarget -> System.Linq.Expressions.GotoExpression
Public Shared Function Goto (target As LabelTarget) As GotoExpression

パラメーター

target
LabelTarget

LabelTarget のジャンプ先の GotoExpression

戻り値

Goto と等しい GotoExpression、指定された値に設定された Kind プロパティ、およびジャンプ時にジャンプ先のラベルに渡される null 値を含む Target

次の例では、 オブジェクトを含む式を作成する方法を GotoExpression 示します。

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

// A label expression of the void type that is the target for the GotoExpression.
LabelTarget returnTarget = Expression.Label();

// This block contains a GotoExpression.
// It transfers execution to a label expression that is initialized with the same LabelTarget as the GotoExpression.
// The types of the GotoExpression, label expression, and LabelTarget must match.
BlockExpression blockExpr =
    Expression.Block(
        Expression.Call(typeof(Console).GetMethod("WriteLine", new Type[] { typeof(string) }), Expression.Constant("GoTo")),
        Expression.Goto(returnTarget),
        Expression.Call(typeof(Console).GetMethod("WriteLine", new Type[] { typeof(string) }), Expression.Constant("Other Work")),
        Expression.Label(returnTarget)
    );

// The following statement first creates an expression tree,
// then compiles it, and then runs it.
Expression.Lambda<Action>(blockExpr).Compile()();

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

// "Other Work" is not printed because
// the GoTo expression transfers execution from Expression.GoTo(returnTarget)
// to Expression.Label(returnTarget).
' Add the following directive to your file:
' Imports System.Linq.Expressions  

' A label expression of the void type that is the target for the GoToExpression.
Dim returnTarget As LabelTarget = Expression.Label()

' This block contains a GotoExpression.
' It transfers execution to a label expression that is initialized with the same LabelTarget as the GotoExpression.
' The types of the GotoExpression, label expression, and LabelTarget must match.
Dim blockExpr As BlockExpression =
      Expression.Block(
          Expression.Call(GetType(Console).GetMethod("WriteLine", New Type() {GetType(String)}), Expression.Constant("GoTo")),
          Expression.Goto(returnTarget),
          Expression.Call(GetType(Console).GetMethod("WriteLine", New Type() {GetType(String)}), Expression.Constant("Other Work")),
          Expression.Label(returnTarget)
      )

' The following statement first creates an expression tree,
' then compiles it, and then runs it.
Expression.Lambda(Of Action)(blockExpr).Compile()()

' This code example produces the following output:
'
' GoTo

' "Other Work" is not printed because 
' the Return expression transfers execution from Expression.GoTo(returnTarget)
' to Expression.Label(returnTarget).

適用対象

Goto(LabelTarget, Expression)

ソース:
GotoExpression.cs
ソース:
GotoExpression.cs
ソース:
GotoExpression.cs

go to ステートメントを表す GotoExpression を作成します。 ジャンプ時にラベルに渡す値を指定できます。

public:
 static System::Linq::Expressions::GotoExpression ^ Goto(System::Linq::Expressions::LabelTarget ^ target, System::Linq::Expressions::Expression ^ value);
public static System.Linq.Expressions.GotoExpression Goto (System.Linq.Expressions.LabelTarget target, System.Linq.Expressions.Expression value);
public static System.Linq.Expressions.GotoExpression Goto (System.Linq.Expressions.LabelTarget target, System.Linq.Expressions.Expression? value);
static member Goto : System.Linq.Expressions.LabelTarget * System.Linq.Expressions.Expression -> System.Linq.Expressions.GotoExpression
Public Shared Function Goto (target As LabelTarget, value As Expression) As GotoExpression

パラメーター

target
LabelTarget

LabelTarget のジャンプ先の GotoExpression

value
Expression

ジャンプ時に関連付けられているラベルに渡される値。

戻り値

Goto と等しい GotoExpressionKind に設定された Target プロパティ、およびジャンプ時にジャンプ先のラベルに渡される target を含む value

適用対象