AcManager.Pages.Miscellaneous.LapTimes_List.LapTimesViewModel.FilterTest C# (CSharp) Method

FilterTest() private method

private FilterTest ( object obj ) : bool
obj object
return bool
            private bool FilterTest(object obj) {
                var t = obj as LapTimeWrapped;
                return t != null && _filter.Test(t);
            }
LapTimes_List.LapTimesViewModel