RPS.Screensaver.startTimers C# (CSharp) Method

startTimers() public method

public startTimers ( ) : void
return void
        public void startTimers() {
            //for (int i = (this.monitors.Length - 1); i >= 0 ; i--) {
            for (int i = 0; i < this.monitors.Length; i++) {
    //            if (this.currentMonitor == CM_ALL || this.currentMonitor == i) {
                    ///this.monitors[i].setTimerInterval();
                    this.monitors[i].startTimer();
                    //this.monitors[i].timer.Enabled = !this.monitors[i].paused;
                    /*if (!this.monitors[i].paused) {
                        this.monitors[i].timer.Start();
                    }*/
                    //
      //          }
            }
        }