Block Method (Expression, Expression, Expression, Expression, Expression)

Expression.Block Method (Expression, Expression, Expression, Expression, Expression)

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

Creates a BlockExpression that contains five expressions and has no variables.

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

public static BlockExpression Block(
	Expression arg0,
	Expression arg1,
	Expression arg2,
	Expression arg3,
	Expression arg4
)

Parameters

arg0
Type: System.Linq.Expressions.Expression
The first expression in the block.
arg1
Type: System.Linq.Expressions.Expression
The second expression in the block.
arg2
Type: System.Linq.Expressions.Expression
The third expression in the block.
arg3
Type: System.Linq.Expressions.Expression
The fourth expression in the block.
arg4
Type: System.Linq.Expressions.Expression
The fifth expression in the block.

When the block expression is executed, it returns the value of the last expression in the block.

Windows Phone OS

Supported in: 8.1, 8.0

Show:
© 2017 Microsoft