| ParallelDo Method (Action, 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(
Action action1,
Action action2
)
Public Shared Sub Do (
action1 As Action,
action2 As Action
)
public:
static void Do(
Action^ action1,
Action^ action2
)
static member Do :
action1 : Action *
action2 : Action -> unit
Parameters
- action1
- Type: SystemAction
The first piece of work to execute. - action2
- Type: SystemAction
The second piece of work to execute.
Exceptions See Also