Esempio n. 1
0
 private void killTimer()
 {
     try
     {
         AppTimer.Dispose();
     }
     catch
     { //swallow
     }
 }
Esempio n. 2
0
        public void Pause()
        {
            try
            {
                resumeSeconds = this.GetSecondsRemaining();
                paused        = true;

                AppTimer.Dispose();
                AppTimer = null;
            }
            catch
            {
            }
        }