Language:
Русский
English
repeat expressions
You can use a repeat expression to display the values of consecutive data elements. For example, for an array of integers named ListInt,
ListInt[0],5 Displays five consecutive integers in decimal
ListInt[0],5x Displays five consecutive integers in hexadecimal
An expression used with a repeat count must represent a single data element.
- If the data element is not a pointer, the debugger views it as the first
element of an array
- If it is a pointer, the debugger views it as a pointer to an array.