BrickPi.Sensors.EV3GyroSensor.StopTimerInternal C# (CSharp) Method

StopTimerInternal() private method

private StopTimerInternal ( ) : void
return void
        private void StopTimerInternal()
        {
            if (timer != null)
            {
                timer.Dispose();
                timer = null;
            }
        }
        private void OnPropertyChanged(string name)