예제 #1
0
파일: Stopwatch.cs 프로젝트: dun3/dun3
 public void Start()
 {
     m_stopwatchState = StopwatchState.Running;
     m_stopwatch.Start();
 }
예제 #2
0
파일: Stopwatch.cs 프로젝트: dun3/dun3
 public void Stop()
 {
     m_stopwatchState = StopwatchState.Stopped;
     m_stopwatch.Stop();
 }
예제 #3
0
파일: Stopwatch.cs 프로젝트: dun3/dun3
        public void Reset()
        {
            OperationCount = 0;
            m_stopwatchState = StopwatchState.New;

            m_stopwatch.Reset();
        }