System.Threading.Timer - Simplest multithreaded timer. Contains two methods and one constructor.
Example:
A timer calls the DataWrite method, which writes "multithread executed..." after five
seconds have elapsed, and then every second after that until the user presses Enter:
using Sys...