System.Threading.ServerWatch.Start C# (CSharp) Method

Start() public method

public Start ( ) : void
return void
        public void Start()
        {
            startTicks = TimeUtility.GetElapsedTimeUs();
        }

Usage Example

        public static ServerWatch StartNew()
        {
            ServerWatch watch = new ServerWatch();

            watch.Start();
            return(watch);
        }
All Usage Examples Of System.Threading.ServerWatch::Start