-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_Fn_Func__1
Andrew Koryavchenko edited this page Jun 17, 2018
·
5 revisions
Helper for type inference from the lambda callback.
Namespace: CodeJam
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public static Func<TResult> Func<TResult>(
Func<TResult> func
)
VB
Public Shared Function Func(Of TResult) (
func As Func(Of TResult)
) As Func(Of TResult)
F#
static member Func :
func : Func<'TResult> -> Func<'TResult>
- func
- Type: System.Func(TResult)
The lambda callback.
- TResult
- The result type.
Type: Func(TResult)
The lambda callback passed.