Is it possible to range an arrays in Watches view to specific index range? Sometimes I work with arrays that contain 100Ks lines, and Watches limit the view to index 131071... I would like to see more than this, or perhaps a range of indexes like between 200,000 and 250,000. Is this possible?
Is it possible to range an arrays in Watches view to specific index range? Sometimes I work with arrays that contain 100Ks lines, and Watches limit the view to index 131071... I would like to see more than this, or perhaps a range of indexes like between 200,000 and 250,000. Is this possible?
Yes, shame is not in Delphi. Maybe one day.
ReplyDeleteIn the debugger, I think you simply write e.g.
ReplyDeleteFInts[15000],100
to display the 100 items starting at index 15000.
A. Bouchez Unfortunately you cannot expand that display anymore.
ReplyDelete