Funcular.IdGenerators.Base36.Base36IdGenerator.GetMicroseconds C# (CSharp) Метод

GetMicroseconds() статический приватный Метод

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
Результат long
        internal static long GetMicroseconds()
        {
            return ConcurrentStopwatch.GetMicroseconds();
        }