UtilDebugInvokeTimesT(Int32, FuncT) Method
Invokes a FuncTResult for the specified amount of times.
Namespace: DevCase.Core.Diagnostics.Debugging.CommonAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static void InvokeTimes<T>(
int count,
Func<T> function
)
Public Shared Sub InvokeTimes(Of T) (
count As Integer,
function As Func(Of T)
)
Dim count As Integer
Dim function As Func(Of T)
UtilDebug.InvokeTimes(count, function)
public:
generic<typename T>
static void InvokeTimes(
int count,
Func<T>^ function
)
static member InvokeTimes :
count : int *
function : Func<'T> -> unit
No code example is currently available or this language may not be supported.
- count Int32
-
The amount of times to execute the funtion.
- function FuncT
-
The FuncTResult to be executed.
- T