Funcular.IdGenerators.Base36.Base36IdGenerator.GetMicroseconds C# (CSharp) Méthode

GetMicroseconds() static private méthode

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
Résultat long
        internal static long GetMicroseconds()
        {
            return ConcurrentStopwatch.GetMicroseconds();
        }