Registriert seit: 16. Jan 2004
Ort: Bendorf
5.219 Beiträge
Delphi 10.2 Tokyo Professional
|
Re: const foo: array of TMyRecord = (myArray:???)
12. Mai 2010, 12:31
foo: array of TMyRecord = (myArray: TDynIntegerArray.Create(1,2,3));
So könnte es evtl. gehen.
PS: So geht es doch nicht. Außerdem kann man dynamische Arrays allgemein nicht initialisieren. D.h. du müsstest schon ein Array[0..Max] of TMyRecord nehmen oder so.
Michael "Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."
|