Hi,
I'm increasingly using interfaces. While debugging, I often need to inspect the internal state of an object that is referenced via an interface variable. (To find my mistakes

). However, the debugger only shows the interface reference as an address (e.g. $0065F8A0). I cannot expand it to see the actual fields of the implementing object (like FFullName, FAddress, etc.). At least I can't find it. As a workaround I use {$IFDEF DEBUG}... {$ENDIF}, that works well but it becomes messy.
Is there a better way?