Is there a timer class in C# that isn't in the Windows.Forms namespace?

MrDatabase picture MrDatabase · Oct 4, 2008 · Viewed 22.1k times · Source

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 application.

Is there a C# timer (or timer like) class for use in console applications?

Answer