| ParallelDo Method (IWork, IWork) |
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(
IWork work0,
IWork work1
)
Public Shared Sub Do (
work0 As IWork,
work1 As IWork
)
public:
static void Do(
IWork^ work0,
IWork^ work1
)
static member Do :
work0 : IWork *
work1 : IWork -> unit
Parameters
- work0
- Type: DigitalRune.ThreadingIWork
Work to execute. - work1
- Type: DigitalRune.ThreadingIWork
Work to execute.
Exceptions See Also