Child-SP RetAddr Call Site
000000000080ef60 000006427f67d4a2 AVOStartup.AVO.Main(System.String[])
I would like to get into the "AVOStartup.AVO" class and look at its member
variables! How can I accomplish this with WinDbg? I have tried all the
various !Dump* commands but maybe I am missing something fundamental here.
Thanks for your help!!!
Try setting a breakpoint with !bpmd in an instance method (I'm guessing
AVO.Main() is a static method). Once your breakpoint hits, try to find the
"this" reference. For x86, it's either at esp+8 or ecx. For x64, it's at
rcx. Try !do (dump object) on those locations.
Marc
Thanks!
--
Ron
.NET Developer
Sorry, just realized you're faced with a crash dump and not doing live
debugging.
Marc
I don't know but this blog is a good resource for managed debugging with the
SOS extension:
http://blogs.msdn.com/tess/default.aspx
good luck,
Marc
Regards
Kjell Gunnar
On Jun 16, 8:14 pm, ron.eddy <ron.e...@discussions.microsoft.com>
wrote: