Comprende el código de forma correcta previamente a adaptarlo a tu proyecto y si ttienes algo que aportar puedes comentarlo.
Ejemplo 1: sume cosas después de que la tarea devuelva vb.net
usingSystem;usingSystem.Threading;usingSystem.Threading.Tasks;publicclassExamplepublicstaticvoidMain()
Thread.CurrentThread.Name ="Main";// Define and run the task.Task taskA = Task.Run(()=> Console.WriteLine("Hello from taskA."));// 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.
Ejemplo 2: sume cosas después de que la tarea devuelva vb.net
usingSystem;usingSystem.Threading;usingSystem.Threading.Tasks;publicclassExamplepublicstaticvoidMain()
Thread.CurrentThread.Name ="Main";// Create a task and supply a user delegate by using a lambda expression.Task taskA =newTask(()=> 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.
Si sostienes algún recelo o capacidad de arreglar nuestro reseña eres capaz de añadir una disquisición y con gusto lo interpretaremos.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)