Basic.InspectThis.Inspecter.GetAllValues C# (CSharp) Method

GetAllValues() private static method

private static GetAllValues ( int importantValue ) : IEnumerable
importantValue int
return IEnumerable
        private static IEnumerable<int> GetAllValues(int importantValue)
        {
            var valueList = new List<int>();

            valueList.Add(importantValue);
            valueList.AddRange(GetOtherValues());

            return valueList;
        }