TaskUtilities..::..RunConcurrently Method

Runs the Task in a concurrent thread without waiting for it to complete. This will start the task if it is not already running.

Namespace:  Tortuga.Anchor
Assembly:  Tortuga.Anchor (in Tortuga.Anchor.dll)

Syntax


public static void RunConcurrently(
	Task task
)
Public Shared Sub RunConcurrently ( _
	task As Task _
)

Parameters

task
Type: Task
The task to run.

Exceptions


ExceptionCondition
[ArgumentNullException]task

Remarks


This is usually used to avoid warning messages about not waiting for the task to complete.