Using TimerCallback : Timer « Development Class « C# / C Sharp






Using TimerCallback

  

using System;
using System.Threading;

class TimePrinter {
    static void PrintTime(object state) {
        Console.WriteLine("Time is: {0}, Param is: {1}", DateTime.Now.ToLongTimeString(), state.ToString());
    }
    static void Main(string[] args) {
        TimerCallback timeCB = new TimerCallback(PrintTime);

        Timer t = new Timer(
            timeCB,   // The TimerCallback delegate type.
            "Hi",     // Any info to pass into the called method.
            0,        // Amount of time to wait before starting.
            1000);    // Interval of time between calls. 
    }
}

   
  








Related examples in the same category

1.illustrates the use of the Timer classillustrates the use of the Timer class
2.Demonstrates using the System.Threading.Timer objectDemonstrates using the System.Threading.Timer object
3.Demonstrates using the System.Timers.Timer class 2Demonstrates using the System.Timers.Timer class 2
4.Control ModifierControl Modifier
5.Digital Clock with Date
6.Simple Clock
7.Interval, Tick, Stop
8.Timer.Elapsed
9.Test Timer