Hallo,
bei Delphi 7 sehe ich auch keine Möglichkeit, bei den
BDS-Versionen geht es so:
Delphi-Quellcode:
type
TStringVector = array of string;
procedure p (const A : array of TStringVector);
begin
end;
procedure q;
begin
p ([TStringVector.Create('1a', '1b', '1c'),
TStringVector.Create('2a', '2b'),
TStringVector.Create('3a')]);
end;
Gruß Hawkeye