| ParallelDo Method (Action) |
Executes the given work items potentially in parallel with each other.
This method will block until all work is completed.
Namespace: DigitalRune.ThreadingAssembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax public static void Do(
params Action[] actions
)
Public Shared Sub Do (
ParamArray actions As Action()
)
public:
static void Do(
... array<Action^>^ actions
)
static member Do :
actions : Action[] -> unit
Parameters
- actions
- Type: SystemAction
The work to execute.
Exceptions See Also