NServiceBus.DateTimeExtensions.Microseconds C# (CSharp) Method

Microseconds() static private method

static private Microseconds ( this self ) : int
self this
return int
        internal static int Microseconds(this DateTime self)
        {
            return (int)Math.Floor(self.Ticks % TimeSpan.TicksPerMillisecond / (double)ticksPerMicrosecond);
        }