-
Notifications
You must be signed in to change notification settings - Fork 34
M_CodeJam_Fn_Action__2
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 callback.
Namespace: CodeJam
Assembly: CodeJam (in CodeJam.dll) Version: 1.0.0.0 (1.0.0.0)
C#
public static Action<T1, T2> Action<T1, T2>(
Action<T1, T2> action
)VB
Public Shared Function Action(Of T1, T2) (
action As Action(Of T1, T2)
) As Action(Of T1, T2)F#
static member Action :
action : Action<'T1, 'T2> -> Action<'T1, 'T2>
- action
- Type: System.Action(T1, T2)
The lambda callback.
- T1
- The type of argument #1.
- T2
- The type of argument #2.
Type: Action(T1, T2)
The lambda callback passed.