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

Start() public method

public Start ( ) : void
return void
        public void Start()
        {
            startTicks = TicksNow ();
        }

Usage Example

Esempio n. 1
0
        public static Watch StartNew()
        {
            Watch temp = new Watch();

            temp.Start();
            return(temp);
        }
All Usage Examples Of System.Threading.Watch::Start