I\'d like to pass a multi-dimensional array to a constructor like so:
constructor TMyClass.Create(MyParameter: array of array of Integer); begin LocalField
I don't have Delphi at hands, but I think this should work:
type TIntArray = array of Integer; ... constructor TMyClass.Create (MyParameter : array of TIntArray); begin ... end;