static void Main(string[] args) { AsyncTimer at = new AsyncTimer(FirstCheck, 5, 1000); at.Run(); AsyncTimer at1 = new AsyncTimer(SecCheck, 10, 3000); at1.Run(); }