0

I haven't debugged a dump file before. My application got stuck and was not working as expected, so I took a dump of it using Windows Task Manager.

The application is built using .NET 3.5. I am opening the dump file in Visual Studio 2013 and started debugging (Debug with Native Only). I specified file-system path of the dll, exe and pdf files in the Symbols. But still when the debugging starts it says it is not able to find main.exe and when I select to continue anyway, it takes me to Windows System modules like ntdll, KernelBase, sechost and shows their method call in call stack or Disassembly (as source not available).

I followed guidelines at:

https://msdn.microsoft.com/library/d5zhxt22.aspx

https://msdn.microsoft.com/en-us/library/ms241613.aspx

I want to check what were the values of some properties in a specific class-instance. Is there a way to do it ? Please guide...

Brij
  • 11,731
  • 22
  • 78
  • 116

1 Answers1

0

A quick google(ing), gave me these resources

Community
  • 1
  • 1
Parimal Raj
  • 20,189
  • 9
  • 73
  • 110
  • My applicaiton is in .NET 3.5 and two links you provided are for .NET 4.0 which supports `Debug with Mixed`. The remaining link is very old using Visual Studio .NET – Brij Nov 19 '15 at 05:08