SenseNet.Diagnostics.OperationTrace.GetSecondsElapsed C# (CSharp) Method

GetSecondsElapsed() private method

private GetSecondsElapsed ( long milliseconds ) : decimal
milliseconds long
return decimal
        private decimal GetSecondsElapsed(long milliseconds)
        {
            decimal result = Convert.ToDecimal(milliseconds) / 1000m;
            return Math.Round(result, 6);
        }