Just this - How do you add a timer to a C# console application? It would be great if you could supply some example coding.
|
1
|
|
|
|
|
|
Use the System.Threading.Timer class. System.Windows.Forms.Timer is designed primarily for use ina a single thread usually the Windows Forms UI thread. There is also a System.Timers class added early on in the development of the .NET framework. However it is generally recommended to use the System.Threading.Timer class instead as this is just a wrapper around System.Threading.Timer anyway. It is also recommended to always use a static (shared in VB.NET) System.Threading.Timer if you are developing a Windows Service and require a timer to run periodically. This will avoid possibly premature garbage collection of your timer object. Here's an example of a timer in a console application:
} From the book CLR Via C# by Jeff Richter. By the way this book describes the rationale behind the 3 types of timers in Chapter 23, highly recommended. |
||||||||||
|
|
|
You can also use your own timing mechanisms if you want a little more control, but possibly less accuracy and more code/complexity, but I would still recommend a timer. Use this though if you need to have control over the actual timing thread:
would be your timing thread(modify this to stop when reqiuired, and at whatever time interval you want). and to use/start you can do:
Callback is your void parameterless method that you want called at each interval. For example:
|
||
|
|
|
Here is the code to create a simple one second timer tick:
And here is the resulting output:
|
||
|
|
