Increment Method (Expression)
Collapse the table of content
Expand the table of content

Expression.Increment Method (Expression)

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Creates a UnaryExpression that represents the incrementing of the expression value by 1.

Namespace:  System.Linq.Expressions
Assembly:  System.Core (in System.Core.dll)

'Declaration
Public Shared Function Increment ( _
	expression As Expression _
) As UnaryExpression

Parameters

expression
Type: System.Linq.Expressions.Expression
An Expression to increment.

Return Value

Type: System.Linq.Expressions.UnaryExpression
A UnaryExpression that represents the incremented expression.

This expression is functional and does not change the value of the object that is passed to it.

The following code example shows how to create an expression that represents an increment operation.


'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.
outputBlock.Text &= incrementExpr.ToString() & vbCrLf

' The following statement first creates an expression tree,
' then compiles it, and then executes it.
outputBlock.Text &= Expression.Lambda(Of Func(Of Double))(incrementExpr).Compile()() & vbCrLf

' The value of the variable did not change,
' because the expression is functional.
outputBlock.Text &= "object: " & num & vbCrLf

' This code example produces the following output:
'
' Increment(5.5)
' 6.5
' object: 5.5


Windows Phone OS

Supported in: 8.1, 8.0

Show:
© 2017 Microsoft