Expression.PostDecrementAssign Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a UnaryExpression that represents the assignment of the expression followed by a subsequent decrement by 1 of the original expression.
Overloads
PostDecrementAssign(Expression, MethodInfo) |
Creates a UnaryExpression that represents the assignment of the expression followed by a subsequent decrement by 1 of the original expression. |
PostDecrementAssign(Expression) |
Creates a UnaryExpression that represents the assignment of the expression followed by a subsequent decrement by 1 of the original expression. |
PostDecrementAssign(Expression, MethodInfo)
- Source:
- UnaryExpression.cs
- Source:
- UnaryExpression.cs
- Source:
- UnaryExpression.cs
Creates a UnaryExpression that represents the assignment of the expression followed by a subsequent decrement by 1 of the original expression.
public:
static System::Linq::Expressions::UnaryExpression ^ PostDecrementAssign(System::Linq::Expressions::Expression ^ expression, System::Reflection::MethodInfo ^ method);
public static System.Linq.Expressions.UnaryExpression PostDecrementAssign (System.Linq.Expressions.Expression expression, System.Reflection.MethodInfo method);
public static System.Linq.Expressions.UnaryExpression PostDecrementAssign (System.Linq.Expressions.Expression expression, System.Reflection.MethodInfo? method);
static member PostDecrementAssign : System.Linq.Expressions.Expression * System.Reflection.MethodInfo -> System.Linq.Expressions.UnaryExpression
Public Shared Function PostDecrementAssign (expression As Expression, method As MethodInfo) As UnaryExpression
Parameters
- expression
- Expression
An Expression to apply the operations on.
- method
- MethodInfo
A MethodInfo that represents the implementing method.
Returns
A UnaryExpression that represents the resultant expression.
Applies to
PostDecrementAssign(Expression)
- Source:
- UnaryExpression.cs
- Source:
- UnaryExpression.cs
- Source:
- UnaryExpression.cs
Creates a UnaryExpression that represents the assignment of the expression followed by a subsequent decrement by 1 of the original expression.
public:
static System::Linq::Expressions::UnaryExpression ^ PostDecrementAssign(System::Linq::Expressions::Expression ^ expression);
public static System.Linq.Expressions.UnaryExpression PostDecrementAssign (System.Linq.Expressions.Expression expression);
static member PostDecrementAssign : System.Linq.Expressions.Expression -> System.Linq.Expressions.UnaryExpression
Public Shared Function PostDecrementAssign (expression As Expression) As UnaryExpression
Parameters
- expression
- Expression
An Expression to apply the operations on.
Returns
A UnaryExpression that represents the resultant expression.