ActionBasedRoutingSample.Controllers.CarsController.List C# (CSharp) 메소드

List() 개인적인 메소드

private List ( ) : string[]
리턴 string[]
        public string[] List() {

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