AK.F1.Timing.Model.Driver.LapTimesModel.Get C# (CSharp) Method

Get() private static method

private static Get ( PostedTime>.IDictionary times, int lapNumber ) : PostedTime
times PostedTime>.IDictionary
lapNumber int
return PostedTime
        private static PostedTime Get(IDictionary<int, PostedTime> times, int lapNumber)
        {
            PostedTime time;

            times.TryGetValue(lapNumber, out time);

            return time;
        }