How to show address of array element in debugger?

How can I show the memory address for element 0?

0
1 comment
Official comment

When stopped at a breakpoint, you can open Run | Debugger Actions | Evaluate Expression... There you can execute something like expectedLob[0]. The result will contain both the value and its address. Alternatively, you can add a variable watch if you need to see the address all the time.

Please sign in to leave a comment.