I am using windbg to perform an analysis on a dump. Following are the commands that I have ran
.loadby sos mscorwks
- to load the sos dll ~* e !clrstack
- to look at all the threads~18s
- changed the context to the thread I want to analyze!clrstack
- to look at the call stack of this thread.Now, I want to go to each frame in the stack and look at the values of the objects/variables there. How should I proceed?
Is there a way to to find out at what line number in the method the thread is actually stuck?
use !clrstack –l to see local variables.
Also look at this WinDbg / SOS Cheat Sheet
This Blog have some great debugging guides