ReferenceData.GetDatastore C# (CSharp) Méthode

GetDatastore() public static méthode

public static GetDatastore ( ) : IEnumerable
Résultat IEnumerable
        public static IEnumerable<SelectListItem> GetDatastore()
        {
            return new[]
                {
                    new SelectListItem { Value = "DEV", Text = "Development"  },
                    new SelectListItem { Value = "DC1", Text = "Production" }
                };
        }