Is it possible to pass a jagged array to a web API method? For example:
public IEnumerable<Object> Get([FromUri]int[][] jaggedArray)
How would I be able to to pass a value for jaggedArray in my web request? The parameter doesn't necessarily have to be [FromUri]
int[]attribute would be possible. I just want to see if the more convenient solution of a multidimensional array is possible.