BaGet.Core.DatabaseSearchService.GetCompatibleFrameworksOrNull C# (CSharp) Method

GetCompatibleFrameworksOrNull() private method

private GetCompatibleFrameworksOrNull ( string framework ) : IReadOnlyList
framework string
return IReadOnlyList
        private IReadOnlyList<string> GetCompatibleFrameworksOrNull(string framework)
        {
            if (framework == null) return null;

            return _frameworks.FindAllCompatibleFrameworks(framework);
        }
    }