Quote Originally Posted by dmantione
0..0 (with range checks disabled!!!) is the best solution. Delphi has no facilities for unbounded arrays.

[pascal]Type
TListItem = record
a,b,c: integer;
End;
TListArray = array of TListItem;[/pascal]


Doh!