ActionHttpMethodProviderSample.Controllers.CarsController.Cars C# (CSharp) 메소드

Cars() 개인적인 메소드

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

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