共用方式為


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 屬性。

傳回

如果沒有變更任何子系則為這個運算式,否則為具有更新之子系的運算式。

適用於