public static bool EnqueueWorkerThread<T1, T2>(
T1 argument1,
T2 argument2,
Action<T1, T2> threadAction
)
public static bool EnqueueWorkerThread<T1, T2>(
T1 argument1,
T2 argument2,
Action<T1, T2> threadAction
)
Public Shared Function EnqueueWorkerThread(Of T1, T2) (
argument1 As T1,
argument2 As T2,
threadAction As Action(Of T1, T2)
) As Boolean
Public Shared Function EnqueueWorkerThread(Of T1, T2) (
argument1 As T1,
argument2 As T2,
threadAction As Action(Of T1, T2)
) As Boolean
public:
generic<typename T1, typename T2>
static bool EnqueueWorkerThread(
T1 argument1,
T2 argument2,
Action<T1, T2>^ threadAction
)
public:
generic<typename T1, typename T2>
static bool EnqueueWorkerThread(
T1 argument1,
T2 argument2,
Action<T1, T2>^ threadAction
)
static member EnqueueWorkerThread :
argument1 : 'T1 *
argument2 : 'T2 *
threadAction : Action<'T1, 'T2> -> bool
static member EnqueueWorkerThread :
argument1 : 'T1 *
argument2 : 'T2 *
threadAction : Action<'T1, 'T2> -> bool