| ParallelStart Method (Action) |
Creates and starts a task to execute the given work.
Namespace: DigitalRune.ThreadingAssembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax public static Task Start(
Action action
)
Public Shared Function Start (
action As Action
) As Task
public:
static Task Start(
Action^ action
)
static member Start :
action : Action -> Task
Parameters
- action
- Type: SystemAction
The work to execute in parallel.
Return Value
Type:
TaskA task which represents the asynchronous operation.
Exceptions See Also