New Method (ConstructorInfo, Expression[])

Expression.New Method (ConstructorInfo, Expression())

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

Creates a NewExpression that represents calling the specified constructor with the specified arguments.

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

'Declaration
Public Shared Function New ( _
	constructor As ConstructorInfo, _
	ParamArray arguments As Expression() _
) As NewExpression

Parameters

constructor
Type: System.Reflection.ConstructorInfo
The ConstructorInfo to set the Constructor property equal to.
arguments
Type: System.Linq.Expressions.Expression ()
An array of Expression objects to use to populate the Arguments collection.

Return Value

Type: System.Linq.Expressions.NewExpression
A NewExpression that has the NodeType property equal to New and the Constructor and Arguments properties set to the specified values.

ExceptionCondition
ArgumentNullException

constructor is Nothing.

-or-

An element of arguments is Nothing.

ArgumentException

The length of arguments does match the number of parameters for the constructor that constructor represents.

-or-

The Type property of an element of arguments is not assignable to the type of the corresponding parameter of the constructor that constructor represents.

The arguments parameter must contain the same number of elements as the number of parameters for the constructor represented by constructor. If arguments is Nothing, it is considered empty, and the Arguments property of the resulting NewExpression is an empty collection.

The Type property of the resulting NewExpression represents the declaring type of the constructor represented by constructor. The Members property is an empty collection.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft