Server.Tracker.Stop C# (CSharp) 메소드

Stop() 공개 메소드

public Stop ( ) : void
리턴 void
        public void Stop()
        {
            if (this.watch != null) {
                this.points.Add("end", this.watch.ElapsedTicks);
                this.watch.Stop();
                this.watch = null;
            }
        }