Basic.InspectThis.Inspecter.GetAllValues C# (CSharp) Méthode

GetAllValues() private static méthode

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

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

            return valueList;
        }