You could use a System.Threading.Timer
.
This has a constructor that takes an initial wait period. Set this to zero and the timer will trigger the callback immediately then every interval you specify thereafter.
Timer stateTimer = new Timer(tcb, autoEvent, 0, 750);