Azavea.Open.Common.Chronometer.GetSplit C# (CSharp) Method

GetSplit() public method

How long has the timer been running since you last called GetSplit.
public GetSplit ( ) : System.TimeSpan
return System.TimeSpan
        public TimeSpan GetSplit()
        {
            DateTime thisSplitTime = DateTime.Now;
            TimeSpan split = new TimeSpan(thisSplitTime.Ticks - _lastSplitTime.Ticks);
            _lastSplitTime = thisSplitTime;
            return split;
        }