Udostępnij za pośrednictwem


Expression.Add Metoda

Definicja

Tworzy BinaryExpression reprezentującą operację dodawania arytmetycznego, która nie ma sprawdzania przepełnienia.

Przeciążenia

Add(Expression, Expression)

Tworzy BinaryExpression reprezentującą operację dodawania arytmetycznego, która nie ma sprawdzania przepełnienia.

Add(Expression, Expression, MethodInfo)

Tworzy BinaryExpression reprezentującą operację dodawania arytmetycznego, która nie ma sprawdzania przepełnienia. Można określić metodę implementowania.

Add(Expression, Expression)

Źródło:
BinaryExpression.cs
Źródło:
BinaryExpression.cs
Źródło:
BinaryExpression.cs

Tworzy BinaryExpression reprezentującą operację dodawania arytmetycznego, która nie ma sprawdzania przepełnienia.

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

Parametry

left
Expression

Expression ustawiania właściwości Left równej.

right
Expression

Expression ustawiania właściwości Right równej.

Zwraca

BinaryExpression z właściwością NodeType równą Add oraz właściwościami Left i Right ustawionymi na określone wartości.

Wyjątki

left lub right jest null.

Operator dodawania nie jest zdefiniowany dla left. Wpisz i right. Typ.

Przykłady

W poniższym przykładzie kodu pokazano, jak utworzyć wyrażenie, które dodaje dwie liczby całkowite.

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

// This expression adds the values of its two arguments.
// Both arguments must be of the same type.
Expression sumExpr = Expression.Add(
    Expression.Constant(1),
    Expression.Constant(2)
);

// Print out the expression.
Console.WriteLine(sumExpr.ToString());

// The following statement first creates an expression tree,
// then compiles it, and then executes it.
Console.WriteLine(Expression.Lambda<Func<int>>(sumExpr).Compile()());

// This code example produces the following output:
//
// (1 + 2)
// 3
' Add the following directive to your file:
' Imports System.Linq.Expressions  

' This expression adds the values of its two arguments.
' Both arguments must be of the same type.
Dim sumExpr As Expression = Expression.Add(
    Expression.Constant(1),
    Expression.Constant(2)
    )

' Print the expression.
Console.WriteLine(sumExpr.ToString())

' The following statement first creates an expression tree,
' then compiles it, and then executes it.            
Console.WriteLine(Expression.Lambda(Of Func(Of Integer))(sumExpr).Compile()())

' This code example produces the following output:
'
' (1 + 2)
' 3

Uwagi

Aby uzyskać więcej informacji na temat tego interfejsu API, zobacz uwagi dotyczące dodatkowego interfejsu API expression.Add.

Dotyczy

Add(Expression, Expression, MethodInfo)

Źródło:
BinaryExpression.cs
Źródło:
BinaryExpression.cs
Źródło:
BinaryExpression.cs

Tworzy BinaryExpression reprezentującą operację dodawania arytmetycznego, która nie ma sprawdzania przepełnienia. Można określić metodę implementowania.

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

Parametry

left
Expression

Expression ustawiania właściwości Left równej.

right
Expression

Expression ustawiania właściwości Right równej.

method
MethodInfo

MethodInfo ustawiania właściwości Method równej.

Zwraca

BinaryExpression, który ma właściwość NodeType równą Add oraz właściwości Left, Right i Method ustawione na określone wartości.

Wyjątki

left lub right jest null.

method nie jest null, a metoda, która reprezentuje, zwraca void, nie jest static (Shared w Visual Basic) lub nie bierze dokładnie dwóch argumentów.

method jest null, a operator dodawania nie jest zdefiniowany dla left. Wpisz i right. Typ.

Uwagi

Aby uzyskać więcej informacji na temat tego interfejsu API, zobacz uwagi dotyczące dodatkowego interfejsu API expression.Add.

Dotyczy