public void StartTimer() { Timer timer = new Timer(5000); timer.Elapsed += this.OnTimerElapsed; timer.Start(); } private ...
確定! 回上一頁