private static bool RecordedTimesElapsedEqual(RecordedTime firstRecordedTime, RecordedTime secondRecordedTime)
        {
            TimeSpanWithAccuracy elapsed = firstRecordedTime.ElapsedSince(secondRecordedTime);

            return(elapsed.TimeValue == TimeSpan.Zero);
        }