考虑以下C#代码:
if (finalTextConvertTimer != null)
{
if (finalTextConvertTimer.IsEnabled)
{
finalTextConvertTimer.Stop();
}
finalTextConvertTimer.Start();
}
是否有必要先停止计时器?这里的一位开发人员表示不是。只是寻找验证。
答案 0 :(得分:1)
首先不在MSDN中进行研究的道歉。 从方法文档(http://msdn.microsoft.com/en-us/library/system.windows.threading.dispatchertimer.start(v=vs.110).aspx):
开始重置计时器间隔。