Advertisement
Fhernd

MetodoAnonimoDelegadoThreadStart.cs

Jul 26th, 2014
687
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.75 KB | None | 0 0
  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. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement