Timer.Elapsed : Timer « Development Class « C# / C Sharp






Timer.Elapsed

  


using System;
using System.Collections.Generic;
using System.Text;
using System.Timers;

class Program {
    static int counter = 0;

    static string displayString = "This string will appear one letter at a time. ";

    static void Main(string[] args) {
        Timer myTimer = new Timer(100);
        myTimer.Elapsed += new ElapsedEventHandler(WriteChar);
        myTimer.Start();
        Console.ReadKey();
    }

    static void WriteChar(object source, ElapsedEventArgs e) {
        Console.Write(displayString[counter++ % displayString.Length]);
    }
}

   
  








Related examples in the same category

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