Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Threading;
- namespace Recetas.Cap04
- {
- public sealed class EjecucionTareaProgramada
- {
- public static void Main()
- {
- // Crea intervalo de tiempo de 10 segundos:
- TimeSpan tiempoEspera = new TimeSpan (0, 0, 10);
- // Crea un temporizador que se iniciará 10 segundos
- // después de creada una instancia de Timer. Y
- // sólo se ejecutará una vez:
- new Timer (
- delegate (object obj)
- {
- Console.WriteLine ("\nEl temporizador se inició a las {0}",
- DateTime.Now.ToString ("HH:mm:ss.ffff"));
- },
- null, tiempoEspera, new TimeSpan(-1)
- );
- Console.Write ("\nA espera de finalización del temporizador.");
- Console.WriteLine (" Presione Enter para finalizar.");
- Console.ReadLine();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement