FarseerPhysics.Common.Stopwatch.GetCurrentTicks C# (CSharp) Method

GetCurrentTicks() private method

private GetCurrentTicks ( ) : long
return long
        private long GetCurrentTicks()
        {
            // TickCount: Gets the number of milliseconds elapsed since the system started.
            return Environment.TickCount * TimeSpan.TicksPerMillisecond;
        }