
The Timer object provides an easy way for doing something repeatedly with a constant interval between.
Interval
Gets or sets the interval (in milliseconds) specifying how often the timer should raise the Tick event. This value can range from 10 to 100000000
TickRaises an event when the timer ticks.
PausePauses the timer. Tick events will not be raised.
ResumeResumes the timer from a paused state. Tick events will now be raised.