- 
                Notifications
    
You must be signed in to change notification settings  - Fork 35
 
M_CodeJam_Expressions_Expr_Func__3
        andrewvk edited this page Jun 23, 2016 
        ·
        5 revisions
      
    [This is preliminary documentation and is subject to change.]
Helper for type inference from the lambda expression.
Namespace: CodeJam.Expressions
Assembly: CodeJam (in CodeJam.dll) Version: 1.0.0.0 (1.0.0.0)
C#
public static Expression<Func<T1, T2, TResult>> Func<T1, T2, TResult>(
	Expression<Func<T1, T2, TResult>> funcExpression
)VB
Public Shared Function Func(Of T1, T2, TResult) ( 
	funcExpression As Expression(Of Func(Of T1, T2, TResult))
) As Expression(Of Func(Of T1, T2, TResult))F#
static member Func : 
        funcExpression : Expression<Func<'T1, 'T2, 'TResult>> -> Expression<Func<'T1, 'T2, 'TResult>> 
- funcExpression
 - Type: System.Linq.Expressions.Expression(Func(T1, T2, TResult))
The lambda expression. 
- T1
 - The type of argument #1.
 - T2
 - The type of argument #2.
 - TResult
 - The result type.
 
Type: Expression(Func(T1, T2, TResult))
The lambda expression passed.