vote up 8 vote down star

I want to use a timer in my simple .Net application written in C#. The only one I can find is the Windows.Forms.Timer class. I don't want to reference this namespace just for my console app.

Is there a C# Timer (or Timer like) class for use in Console apps?

flag

3 Answers

vote up 14 vote down check

System.Timers.Timer

And as MagicKat says:

System.Threading.Timer

You can see the differences here: http://mark.michaelis.net/Blog/SystemWindowsFormsTimerVsSystemThreadingTimerVsSystemTimersTimer.aspx

And you can see MSDN examples here:

http://msdn.microsoft.com/es-es/library/system.timers.timer(VS.80).aspx

And here:

http://msdn.microsoft.com/es-es/library/system.threading.timer(VS.80).aspx

link|flag
System.Threading.Timer is another one as well – MagicKat Oct 3 '08 at 23:43
This does answer the question, but talk about "minimal". Spoon's answer is much better. – OJ Oct 3 '08 at 23:49
vote up 5 vote down

I would recommend the Timer class in the System.Timers namespace. Also of interest, the Timer class in the System.Threading namespace.

using System;
using System.Timers;

public class Timer1
{
    private static Timer aTimer = new System.Timers.Timer(10000);

    public static void Main()
    {
        aTimer.Elapsed += new ElapsedEventHandler(OnTimedEvent);
        aTimer.Enabled = true;

        Console.WriteLine("Press the Enter key to exit the program.");
        Console.ReadLine();
    }

    // Specify what you want to happen when the Elapsed event is 
    // raised.
    private static void OnTimedEvent(object source, ElapsedEventArgs e)
    {
        Console.WriteLine("The Elapsed event was raised at {0}", e.SignalTime);
    }
}

Example from MSDN docs.

link|flag
vote up -1 vote down

System.Diagnostics.Stopwatch if your goal is to time how long something takes to run

link|flag
This is not a timer, this allows you to measure execution of a specific block of code but does not act the same as a timer. – spoon16 Oct 3 '08 at 23:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.