Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. using System;
  2. using System.Threading;
  3.  
  4. namespace Articulos.Cap04
  5. {
  6.     public sealed class MetodoAnonimoDelegadoThreadStart
  7.     {
  8.         public static void Main()
  9.         {
  10.             Thread thread = new Thread (
  11.                 delegate()
  12.                 {
  13.                     for (int i = 0; i < 5; ++i)
  14.                     {
  15.                         Console.WriteLine (i.ToString());
  16.                         // Pausa este thread por 0.5s:
  17.                         Thread.Sleep (500);
  18.                     }
  19.                 }
  20.             );
  21.            
  22.             // Inicia la ejecución del Thread:
  23.             thread.Start();
  24.            
  25.             Console.WriteLine ("El método Main ha finalizado su ejecución.");
  26.         }
  27.     }
  28. }