public void Stop() { if (timer != null) { timer.Stop(); timer = null; } }
public void Start() { Stop(); timer = new TimerHolder(Interval, CallBack); }