Exemplo n.º 1
0
        protected virtual void OnTimerTick(TimerEventArgs e)
        {
            // Make a temporary copy of the event to avoid possibility of
            // a race condition if the last subscriber unsubscribes
            // immediately after the null check and before the event is raised.
            TimerTickEventHandler handler = TimerTick;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Exemplo n.º 2
0
 static void OnTimerTick(object sender, TimerEventArgs e)
 {
     Console.WriteLine("Inside timer tick, ticks left: " + e.TicksLeft);
 }
Exemplo n.º 3
0
 static void OnTimerTick(object sender, TimerEventArgs e)
 {
     Console.WriteLine("Inside timer tick, ticks left: " + e.TicksLeft);
 }