Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Expression::Block Method

 

Creates a BlockExpression.

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

NameDescription
System_CAPS_pubmethodSystem_CAPS_staticBlock(Expression^, Expression^)

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

System_CAPS_pubmethodSystem_CAPS_staticBlock(Expression^, Expression^, Expression^)

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

System_CAPS_pubmethodSystem_CAPS_staticBlock(Expression^, Expression^, Expression^, Expression^)

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

System_CAPS_pubmethodSystem_CAPS_staticBlock(Expression^, Expression^, Expression^, Expression^, Expression^)

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

System_CAPS_pubmethodSystem_CAPS_staticBlock(array<Expression^>^)

Creates a BlockExpression that contains the given expressions and has no variables.

System_CAPS_pubmethodSystem_CAPS_staticBlock(IEnumerable<Expression^>^)

Creates a BlockExpression that contains the given expressions and has no variables.

System_CAPS_pubmethodSystem_CAPS_staticBlock(IEnumerable<ParameterExpression^>^, array<Expression^>^)

Creates a BlockExpression that contains the given variables and expressions.

System_CAPS_pubmethodSystem_CAPS_staticBlock(IEnumerable<ParameterExpression^>^, IEnumerable<Expression^>^)

Creates a BlockExpression that contains the given variables and expressions.

System_CAPS_pubmethodSystem_CAPS_staticBlock(Type^, array<Expression^>^)

Creates a BlockExpression that contains the given expressions, has no variables and has specific result type.

System_CAPS_pubmethodSystem_CAPS_staticBlock(Type^, IEnumerable<Expression^>^)

Creates a BlockExpression that contains the given expressions, has no variables and has specific result type.

System_CAPS_pubmethodSystem_CAPS_staticBlock(Type^, IEnumerable<ParameterExpression^>^, array<Expression^>^)

Creates a BlockExpression that contains the given variables and expressions.

System_CAPS_pubmethodSystem_CAPS_staticBlock(Type^, IEnumerable<ParameterExpression^>^, IEnumerable<Expression^>^)

Creates a BlockExpression that contains the given variables and expressions.

Return to top
Show:
© 2017 Microsoft