chrono capture statistics for a session of lap times
Example #1
0
        public Session Restart()
        {
            lock (_lockObject)
            {
                var snapshot = ActiveSession;
                ActiveSession = new Session(Name);

                return snapshot;
            }
        }
Example #2
0
 internal StopwatchChronograph(string name)
 {
     Name = name;
     ActiveSession = new Session(Name);
 }