How to write multi-dimention array as a function parameter in MQL5

 
In MQL4, I can write: void StringFunc(string &ArrayRes[][]) and it's no compile error, but in MQL5, StringFunc(string &ArrayRes[][]) has this compile error: '[' - invalid index value. How to write multi-dimention array as a function parameter in MQL5? Is there anything changed?
 

Only the first dimension can be dynamic.

void StringFunc(string &ArrayRes[][x])
 
Alain Verleyen:

Only the first dimension can be dynamic.

void StringFunc(string &ArrayRes[][x])
Get it. Thank you.
 
:-]