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

                return snapshot;
            }
        }
Exemplo n.º 2
0
 internal StopwatchChronograph(string name)
 {
     Name = name;
     ActiveSession = new Session(Name);
 }