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