Funcular.IdGenerators.Base36.Base36IdGenerator.GetMicroseconds C# (CSharp) Method

GetMicroseconds() static private method

Return the elapsed microseconds since the in-service DateTime; will never return the same value twice. Uses a high-resolution Stopwatch (not DateTime.Now) to measure durations.
static private GetMicroseconds ( ) : long
return long
        internal static long GetMicroseconds()
        {
            return ConcurrentStopwatch.GetMicroseconds();
        }