Akka.Util.MonotonicClock.ToTicks C# (CSharp) Method

ToTicks() static private method

Ticks represent 100 nanos. https://msdn.microsoft.com/en-us/library/system.datetime.ticks(v=vs.110).aspx This extension method converts a nano seconds value to Ticks.
static private ToTicks ( this nanos ) : long
nanos this
return long
        internal static long ToTicks(this long nanos)
        {
            return nanos/NanosPerTick;
        }
	}