System.Data.Common.ADP.TimerToMilliseconds C# (CSharp) Method

TimerToMilliseconds() static private method

static private TimerToMilliseconds ( long timerValue ) : long
timerValue long
return long
        static internal long TimerToMilliseconds(long timerValue)
        {
            long result = timerValue / TimeSpan.TicksPerMillisecond;
            return result;
        }
ADP