- 
                Notifications
    You must be signed in to change notification settings 
- Fork 35
M_CodeJam_Expressions_Expr_Action__1
        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<Action<T1>> Action<T1>(
	Expression<Action<T1>> actionExpression
)VB
Public Shared Function Action(Of T1) ( 
	actionExpression As Expression(Of Action(Of T1))
) As Expression(Of Action(Of T1))F#
static member Action : 
        actionExpression : Expression<Action<'T1>> -> Expression<Action<'T1>> 
- actionExpression
- Type: System.Linq.Expressions.Expression(Action(T1))
 The lambda expression.
- T1
- The type of argument #1.
Type: Expression(Action(T1))
The lambda expression passed.