BlockExpression.Update メソッド

定義

次のような新しい式を作成しますが、指定された子を使用します。 すべての子が同じ場合、この式が返されます。

public:
 System::Linq::Expressions::BlockExpression ^ Update(System::Collections::Generic::IEnumerable<System::Linq::Expressions::ParameterExpression ^> ^ variables, System::Collections::Generic::IEnumerable<System::Linq::Expressions::Expression ^> ^ expressions);
public System.Linq.Expressions.BlockExpression Update(System.Collections.Generic.IEnumerable<System.Linq.Expressions.ParameterExpression> variables, System.Collections.Generic.IEnumerable<System.Linq.Expressions.Expression> expressions);
public System.Linq.Expressions.BlockExpression Update(System.Collections.Generic.IEnumerable<System.Linq.Expressions.ParameterExpression>? variables, System.Collections.Generic.IEnumerable<System.Linq.Expressions.Expression> expressions);
member this.Update : seq<System.Linq.Expressions.ParameterExpression> * seq<System.Linq.Expressions.Expression> -> System.Linq.Expressions.BlockExpression
Public Function Update (variables As IEnumerable(Of ParameterExpression), expressions As IEnumerable(Of Expression)) As BlockExpression

パラメーター

variables
IEnumerable<ParameterExpression>

結果の Variables プロパティ。

expressions
IEnumerable<Expression>

結果の Expressions プロパティ。

返品

子が変更されていない場合は、この式、または更新された子を含む式。

適用対象