Expression.SubtractAssign Methode

Definition

Erstellt eine BinaryExpression , die einen Subtraktionszuweisungsvorgang darstellt, der keine Überlaufüberprüfung hat.

Überlädt

Name Beschreibung
SubtractAssign(Expression, Expression)

Erstellt eine BinaryExpression , die einen Subtraktionszuweisungsvorgang darstellt, der keine Überlaufüberprüfung hat.

SubtractAssign(Expression, Expression, MethodInfo)

Erstellt eine BinaryExpression , die einen Subtraktionszuweisungsvorgang darstellt, der keine Überlaufüberprüfung hat.

SubtractAssign(Expression, Expression, MethodInfo, LambdaExpression)

Erstellt eine BinaryExpression , die einen Subtraktionszuweisungsvorgang darstellt, der keine Überlaufüberprüfung hat.

SubtractAssign(Expression, Expression)

Erstellt eine BinaryExpression , die einen Subtraktionszuweisungsvorgang darstellt, der keine Überlaufüberprüfung hat.

public:
 static System::Linq::Expressions::BinaryExpression ^ SubtractAssign(System::Linq::Expressions::Expression ^ left, System::Linq::Expressions::Expression ^ right);
public static System.Linq.Expressions.BinaryExpression SubtractAssign(System.Linq.Expressions.Expression left, System.Linq.Expressions.Expression right);
static member SubtractAssign : System.Linq.Expressions.Expression * System.Linq.Expressions.Expression -> System.Linq.Expressions.BinaryExpression
Public Shared Function SubtractAssign (left As Expression, right As Expression) As BinaryExpression

Parameter

left
Expression

Eine Expression , die die Left Eigenschaft gleich festlegen soll.

right
Expression

Eine Expression , die die Right Eigenschaft gleich festlegen soll.

Gibt zurück

A BinaryExpression that has the NodeType property equal to SubtractAssign and the LeftRight properties set to the specified values.

Gilt für:

SubtractAssign(Expression, Expression, MethodInfo)

Erstellt eine BinaryExpression , die einen Subtraktionszuweisungsvorgang darstellt, der keine Überlaufüberprüfung hat.

public:
 static System::Linq::Expressions::BinaryExpression ^ SubtractAssign(System::Linq::Expressions::Expression ^ left, System::Linq::Expressions::Expression ^ right, System::Reflection::MethodInfo ^ method);
public static System.Linq.Expressions.BinaryExpression SubtractAssign(System.Linq.Expressions.Expression left, System.Linq.Expressions.Expression right, System.Reflection.MethodInfo method);
static member SubtractAssign : System.Linq.Expressions.Expression * System.Linq.Expressions.Expression * System.Reflection.MethodInfo -> System.Linq.Expressions.BinaryExpression
Public Shared Function SubtractAssign (left As Expression, right As Expression, method As MethodInfo) As BinaryExpression

Parameter

left
Expression

Eine Expression , die die Left Eigenschaft gleich festlegen soll.

right
Expression

Eine Expression , die die Right Eigenschaft gleich festlegen soll.

method
MethodInfo

A MethodInfo , um die Method Eigenschaft gleich festzulegen.

Gibt zurück

Ein BinaryExpression Wert, der die NodeType Eigenschaft entsprichtSubtractAssign, und Left die Eigenschaften, die RightMethodauf die angegebenen Werte festgelegt sind.

Gilt für:

SubtractAssign(Expression, Expression, MethodInfo, LambdaExpression)

Erstellt eine BinaryExpression , die einen Subtraktionszuweisungsvorgang darstellt, der keine Überlaufüberprüfung hat.

public:
 static System::Linq::Expressions::BinaryExpression ^ SubtractAssign(System::Linq::Expressions::Expression ^ left, System::Linq::Expressions::Expression ^ right, System::Reflection::MethodInfo ^ method, System::Linq::Expressions::LambdaExpression ^ conversion);
public static System.Linq.Expressions.BinaryExpression SubtractAssign(System.Linq.Expressions.Expression left, System.Linq.Expressions.Expression right, System.Reflection.MethodInfo method, System.Linq.Expressions.LambdaExpression conversion);
static member SubtractAssign : System.Linq.Expressions.Expression * System.Linq.Expressions.Expression * System.Reflection.MethodInfo * System.Linq.Expressions.LambdaExpression -> System.Linq.Expressions.BinaryExpression
Public Shared Function SubtractAssign (left As Expression, right As Expression, method As MethodInfo, conversion As LambdaExpression) As BinaryExpression

Parameter

left
Expression

Eine Expression , die die Left Eigenschaft gleich festlegen soll.

right
Expression

Eine Expression , die die Right Eigenschaft gleich festlegen soll.

method
MethodInfo

A MethodInfo , um die Method Eigenschaft gleich festzulegen.

conversion
LambdaExpression

A LambdaExpression , um die Conversion Eigenschaft gleich festzulegen.

Gibt zurück

ABinaryExpression, das die NodeType Eigenschaft gleich SubtractAssign und den LeftRightMethod, und Conversion Eigenschaften auf die angegebenen Werte festgelegt hat.

Gilt für: