CSharpRoboticsLib.FlowControl.WaitByTime.Reset C# (CSharp) Method

Reset() public method

Reset the timer to the time span specified by WaitTimeMilliseconds
public Reset ( ) : void
return void
        public void Reset()
        {
            if (null == m_timer)
                m_timer = new Stopwatch();

            m_timer.Restart();
        }