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::Lambda Method

 

Creates an expression tree that represents a lambda expression.

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

NameDescription
System_CAPS_pubmethodSystem_CAPS_staticLambda(Expression^, Boolean, IEnumerable<ParameterExpression^>^)

Creates a LambdaExpression by first constructing a delegate type.

System_CAPS_pubmethodSystem_CAPS_staticLambda(Expression^, Boolean, array<ParameterExpression^>^)

Creates a LambdaExpression by first constructing a delegate type.

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

Creates a LambdaExpression by first constructing a delegate type.

System_CAPS_pubmethodSystem_CAPS_staticLambda(Expression^, array<ParameterExpression^>^)

Creates a LambdaExpression by first constructing a delegate type.

System_CAPS_pubmethodSystem_CAPS_staticLambda(Expression^, String^, Boolean, IEnumerable<ParameterExpression^>^)

Creates a LambdaExpression by first constructing a delegate type.

System_CAPS_pubmethodSystem_CAPS_staticLambda(Expression^, String^, IEnumerable<ParameterExpression^>^)

Creates a LambdaExpression by first constructing a delegate type.

System_CAPS_pubmethodSystem_CAPS_staticLambda(Type^, Expression^, Boolean, IEnumerable<ParameterExpression^>^)

Creates a LambdaExpression by first constructing a delegate type.

System_CAPS_pubmethodSystem_CAPS_staticLambda(Type^, Expression^, Boolean, array<ParameterExpression^>^)

Creates a LambdaExpression by first constructing a delegate type.

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

Creates a LambdaExpression by first constructing a delegate type. It can be used when the delegate type is not known at compile time.

System_CAPS_pubmethodSystem_CAPS_staticLambda(Type^, Expression^, array<ParameterExpression^>^)

Creates a LambdaExpression by first constructing a delegate type. It can be used when the delegate type is not known at compile time.

System_CAPS_pubmethodSystem_CAPS_staticLambda(Type^, Expression^, String^, Boolean, IEnumerable<ParameterExpression^>^)

Creates a LambdaExpression by first constructing a delegate type.

System_CAPS_pubmethodSystem_CAPS_staticLambda(Type^, Expression^, String^, IEnumerable<ParameterExpression^>^)

Creates a LambdaExpression by first constructing a delegate type.

System_CAPS_pubmethodSystem_CAPS_staticLambda<TDelegate>(Expression^, Boolean, IEnumerable<ParameterExpression^>^)

Creates an Expression<TDelegate> where the delegate type is known at compile time.

System_CAPS_pubmethodSystem_CAPS_staticLambda<TDelegate>(Expression^, Boolean, array<ParameterExpression^>^)

Creates an Expression<TDelegate> where the delegate type is known at compile time.

System_CAPS_pubmethodSystem_CAPS_staticLambda<TDelegate>(Expression^, IEnumerable<ParameterExpression^>^)

Creates an Expression<TDelegate> where the delegate type is known at compile time.

System_CAPS_pubmethodSystem_CAPS_staticLambda<TDelegate>(Expression^, array<ParameterExpression^>^)

Creates an Expression<TDelegate> where the delegate type is known at compile time.

System_CAPS_pubmethodSystem_CAPS_staticLambda<TDelegate>(Expression^, String^, Boolean, IEnumerable<ParameterExpression^>^)

Creates an Expression<TDelegate> where the delegate type is known at compile time.

System_CAPS_pubmethodSystem_CAPS_staticLambda<TDelegate>(Expression^, String^, IEnumerable<ParameterExpression^>^)

Creates an Expression<TDelegate> where the delegate type is known at compile time.

Return to top
Show:
© 2017 Microsoft