Lambda Method
TOC
Collapse the table of content
Expand the table of content

Expression.Lambda Method

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

Creates an expression tree that represents a lambda expression.

This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.

  NameDescription
Public method Static member Lambda(Of TDelegate)(Expression, IEnumerable(Of ParameterExpression)) Creates an Expression(Of TDelegate) where the delegate type is known at compile time.
Public method Static member Lambda(Expression, IEnumerable(Of ParameterExpression)) Creates a LambdaExpression by first constructing a delegate type.
Public method Static member Lambda(Of TDelegate)(Expression, ParameterExpression()) Creates an Expression(Of TDelegate) where the delegate type is known at compile time.
Public method Static member Lambda(Expression, ParameterExpression()) Creates a LambdaExpression by first constructing a delegate type.
Public method Static member Lambda(Expression, Boolean, IEnumerable(Of ParameterExpression)) Creates a LambdaExpression by first constructing a delegate type.
Public method Static member Lambda(Of TDelegate)(Expression, Boolean, IEnumerable(Of ParameterExpression)) Creates an Expression(Of TDelegate) where the delegate type is known at compile time.
Public method Static member Lambda(Of TDelegate)(Expression, Boolean, ParameterExpression()) Creates an Expression(Of TDelegate) where the delegate type is known at compile time.
Public method Static member Lambda(Expression, Boolean, ParameterExpression()) Creates a LambdaExpression by first constructing a delegate type.
Public method Static member Lambda(Expression, String, IEnumerable(Of ParameterExpression)) Creates a LambdaExpression by first constructing a delegate type.
Public method Static member Lambda(Of TDelegate)(Expression, String, IEnumerable(Of ParameterExpression)) Creates an Expression(Of TDelegate) where the delegate type is known at compile time.
Public method Static member Lambda(Type, Expression, IEnumerable(Of ParameterExpression)) Creates a LambdaExpression by first constructing a delegate type. It can be used when the delegate type is not known at compile time.
Public method Static member Lambda(Type, Expression, ParameterExpression()) Creates a LambdaExpression by first constructing a delegate type. It can be used when the delegate type is not known at compile time.
Public method Static member Lambda(Of TDelegate)(Expression, String, Boolean, IEnumerable(Of ParameterExpression)) Creates an Expression(Of TDelegate) where the delegate type is known at compile time.
Public method Static member Lambda(Expression, String, Boolean, IEnumerable(Of ParameterExpression)) Creates a LambdaExpression by first constructing a delegate type.
Public method Static member Lambda(Type, Expression, Boolean, IEnumerable(Of ParameterExpression)) Creates a LambdaExpression by first constructing a delegate type.
Public method Static member Lambda(Type, Expression, Boolean, ParameterExpression()) Creates a LambdaExpression by first constructing a delegate type.
Public method Static member Lambda(Type, Expression, String, IEnumerable(Of ParameterExpression)) Creates a LambdaExpression by first constructing a delegate type.
Public method Static member Lambda(Type, Expression, String, Boolean, IEnumerable(Of ParameterExpression)) Creates a LambdaExpression by first constructing a delegate type.
Top

Show:
© 2017 Microsoft