Hello,
I'm investigating WPF/winforms app crash. User was able to save dump file via Task Manager.
I can load dump file in VS2013, click Debug with Mixed and it does point to the line of code where crash happens ( I assume that's why it points there).
On Minidump File Summary page it says "Heap Information Present".
The msdn site says that "If the dump was saved with heap information... you can examine the stacks, threads, and variable values of the app at the time the dump occurred."
https://msdn.microsoft.com/en-us/library/d5zhxt22.aspx
But when I go to Immediate Window and type a variable name that's in scope on that line, I get a message:
"Cannot obtain value of local or argument 'currentPage' as it is not available at this instruction pointer, possibly because it has been optimized away."
I understand it could've been 'optimized away' but I can't see any of the variables that should be in scope including "this".
How can I see what was the value of the variable from Minidump file with Heap info?
Thank you!
Isolda