Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| // <Snippet1> | |
| using System; | |
| using System.Threading; | |
| using System.Threading.Tasks; | |
| 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 output like the following: | |
| // Hello from thread 'Main'. | |
| // Hello from taskA. | |
| // </Snippet1> |