Namespace:
System.Linq.Expressions
Assembly:
System.Core (in System.Core.dll)
Visual Basic (Declaration)
Public Shared Function Lambda(Of TDelegate) ( _
body As Expression, _
ParamArray parameters As ParameterExpression() _
) As Expression(Of TDelegate)
Dim body As Expression
Dim parameters As ParameterExpression()
Dim returnValue As Expression(Of TDelegate)
returnValue = Expression.Lambda(body, parameters)
public static Expression<TDelegate> Lambda<TDelegate>(
Expression body,
params ParameterExpression[] parameters
)
public:
generic<typename TDelegate>
static Expression<TDelegate>^ Lambda(
Expression^ body,
... array<ParameterExpression^>^ parameters
)
JScript does not support generic types or methods.
Type Parameters
- TDelegate
A delegate type.
| Exception | Condition |
|---|
| ArgumentNullException |
body is nullNothingnullptra null reference (Nothing in Visual Basic). -or- One or more elements in parameters are nullNothingnullptra null reference (Nothing in Visual Basic). |
| ArgumentException |
TDelegate is not a delegate type. -or-
body.Type represents a type that is not assignable to the return type of TDelegate. -or-
parameters does not contain the same number of elements as the list of parameters for TDelegate. -or- The Type property of an element of parameters is not assignable from the type of the corresponding parameter type of TDelegate. |
The number of parameters for the delegate type TDelegate must equal the number of elements in parameters.
The elements of parameters must be reference equal to the parameter expressions in body.
The Type property of the resulting object represents the type TDelegate. If parameters is nullNothingnullptra null reference (Nothing in Visual Basic), the Parameters property of the resulting object is an empty collection.
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.NET Framework
Supported in: 3.5
Reference