The Call Stack view in the Debugger window lists the hierarchy of method calls made during execution of the current thread. The method that was executing when the thread stopped is at the top of the stack. The initial method is at the bottom of the stack.
You toggle the display of the Call Stack view by clicking the Call Stack button in the Debugger window toolbar. The following table describes the icons used in the Call Stack view.
Icon | Description |
---|---|
![]() | The current method on the call stack |
![]() | A variable in scope at the time the method entered the call stack |
![]() | A super variable |
![]() | A static variable |
Right-clicking a method name opens a menu with items for displaying the source of the method and viewing the method properties. The properties include the following:
See also | |
---|---|
Changing the Current Thread |