using System;
using System.Threading;
using System.Threading.Tasks;
This example example includes a call to the Task.Wait method to ensure that the task completes execution before the console mode application ends.
public class Example
{
public static void Main()
{
Thread.CurrentThread.Name = "Main";
// Create a task and supply a user delegate by using a lambda expression.
Task taskA = new Task( () => Console.WriteLine("Hello from taskA."));
// Start the task.
taskA.Start();
// Output a message from the calling thread.
Console.WriteLine("Hello from thread '{0}'.",
Thread.CurrentThread.Name);
taskA.Wait();
}
}
// The example displays the following output:
// Hello from thread 'Main'.
// Hello from taskA.