Zitat von
Blup:
Dieses Problem findet früher oder später jeden Delphianwender.
zum Verständnis:
Delphi-Quellcode:
var
_container1: array of TContainer;
_container2: array of TContainer;
"array of TContainer" ist jeweils eine eigenständige Typdeklaration.
Darum geht es hier aber gar nicht, denn in der Deklaration
procedure fill_container(var _edifactstring : string; _container : array of TContainer);
ist _container
kein dynamisches Array sondern ein "Open array". Siehe Delphi-Hilfe (
Open array parameters):
Zitat:
The syntax of open array parameters resembles that of dynamic array types, but they do not mean the same thing.
Gammatester