UtilDebugInvokeTimes(Int32, Action) Method
Invokes an Action 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(
int count,
Action action
)
Public Shared Sub InvokeTimes (
count As Integer,
action As Action
)
Dim count As Integer
Dim action As Action
UtilDebug.InvokeTimes(count, action)
public:
static void InvokeTimes(
int count,
Action^ action
)
static member InvokeTimes :
count : int *
action : Action -> unit
No code example is currently available or this language may not be supported.
Parameters
- count Int32
-
The amount of times to execute the funtion.
- action Action
-
The Action to be executed.