In ASP.Net MVC, is it possible to define to a route that there may be an unknown number of arguments? For example assuming the following code:
public void Sample(params String[] args) {}
Can we mimic the same concept in a route like [Route("Product/{id}")]
so that we get the following result working:
/Product/PID_01/PID_02/PID_03,....