Considering the following C# code:
if (finalTextConvertTimer != null)
{
if (finalTextConvertTimer.IsEnabled)
{
finalTextConvertTimer.Stop();
}
finalTextConvertTimer.Start();
}
Is it necessary to stop the timer first? One developer here says it's not. Just looking for validation.