Expression.Decrement メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
式の値を 1 つ減らすデクリメントを表す UnaryExpression を作成します。
オーバーロード
Decrement(Expression) |
式の値を 1 つ減らすデクリメントを表す UnaryExpression を作成します。 |
Decrement(Expression, MethodInfo) |
式の値を 1 つ減らすデクリメントを表す UnaryExpression を作成します。 |
Decrement(Expression)
式の値を 1 つ減らすデクリメントを表す UnaryExpression を作成します。
public:
static System::Linq::Expressions::UnaryExpression ^ Decrement(System::Linq::Expressions::Expression ^ expression);
public static System.Linq.Expressions.UnaryExpression Decrement (System.Linq.Expressions.Expression expression);
static member Decrement : System.Linq.Expressions.Expression -> System.Linq.Expressions.UnaryExpression
Public Shared Function Decrement (expression As Expression) As UnaryExpression
パラメーター
- expression
- Expression
デクリメントする Expression。
戻り値
デクリメントされた式を表す UnaryExpression。
例
次のコード例は、指定された値から 1 を減算する式を作成する方法を示しています。
// Add the following directive to your file:
// using System.Linq.Expressions;
double num = 5.5;
// This expression represents a decrement operation
// that subtracts 1 from a value.
Expression decrementExpr = Expression.Decrement(
Expression.Constant(num)
);
// Print expression.
Console.WriteLine(decrementExpr.ToString());
// The following statement first creates an expression tree,
// then compiles it, and then executes it.
Console.WriteLine(
Expression.Lambda<Func<double>>(decrementExpr).Compile()());
// The value of the variable did not change,
// because the expression is functional.
Console.WriteLine("object: " + num);
// This code example produces the following output:
//
// Decrement(5.5)
// 4.5
// object: 5.5
' Add the following directive to your file:
' Imports System.Linq.Expressions
Dim num As Double = 5.5
' This expression represents a decrement operation
' that subtracts 1 from a value.
Dim decrementExpr As Expression = Expression.Decrement(
Expression.Constant(num)
)
' Print the expression.
Console.WriteLine(decrementExpr.ToString())
' The following statement first creates an expression tree,
' then compiles it, and then executes it.
Console.WriteLine(
Expression.Lambda(Of Func(Of Double))(decrementExpr).Compile()())
' The value of the variable did not change,
' because the expression is functional.
Console.WriteLine("object: " & num)
' This code example produces the following output:
'
' Decrement(5.5)
' 4.5
' object: 5.5
注釈
この式は機能しており、渡されるオブジェクトの値は変更されません。
適用対象
Decrement(Expression, MethodInfo)
式の値を 1 つ減らすデクリメントを表す UnaryExpression を作成します。
public:
static System::Linq::Expressions::UnaryExpression ^ Decrement(System::Linq::Expressions::Expression ^ expression, System::Reflection::MethodInfo ^ method);
public static System.Linq.Expressions.UnaryExpression Decrement (System.Linq.Expressions.Expression expression, System.Reflection.MethodInfo method);
public static System.Linq.Expressions.UnaryExpression Decrement (System.Linq.Expressions.Expression expression, System.Reflection.MethodInfo? method);
static member Decrement : System.Linq.Expressions.Expression * System.Reflection.MethodInfo -> System.Linq.Expressions.UnaryExpression
Public Shared Function Decrement (expression As Expression, method As MethodInfo) As UnaryExpression
パラメーター
- expression
- Expression
デクリメントする Expression。
- method
- MethodInfo
メソッドの実装を表す MethodInfo。
戻り値
デクリメントされた式を表す UnaryExpression。
注釈
この式は機能しており、渡されるオブジェクトの値は変更されません。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET