Array with mutiple types?
- by aleluja
Hello,
I was wondering if there is a way to make an array which would have mutiple types of data fields.
So far i was using aMyArray: array of array [0..1] of TPoint;
But now, it is not enough for me. I need to add 3 more elements to the existing 2 "Point" elements making it an array like aMyArray: array of (TPoint,TPoint,real,real,real)
So…