Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Threading;
- namespace Recetas.Multithreading.Cap01
- {
- public sealed class UsoSleepConTimeSpan
- {
- public static void Main()
- {
- // Creación de intervalo de tiempo con 0 horas,
- // 0 minutos, y 2 segundos:
- TimeSpan intervalo = new TimeSpan (0, 0, 2);
- for (int i = 0; i < 5; ++i)
- {
- Console.WriteLine ("Pausando durante 2 segundos...");
- // Pausa el Thread actual durante 2 segundos:
- Thread.Sleep (intervalo);
- }
- Console.WriteLine ("El método Main ha finalizado.");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement