ActionBasedRoutingSample.Controllers.CarsController.List C# (CSharp) Method

List() private method

private List ( ) : string[]
return string[]
        public string[] List() {

            return new string[] { 
                "Car 1",
                "Car 2",
                "Car 3"
            };
        }
    }
CarsController