BrickPi.Sensors.SensorNotificationBase.StopTimerInternal C# (CSharp) Méthode

StopTimerInternal() private méthode

private StopTimerInternal ( ) : void
Résultat void
        private void StopTimerInternal()
        {
            if (timer != null)
            {
                timer.Dispose();
                timer = null;
            }
        }