Debugging a snapshot of an object
I'm wondering if it's possible to "snapshot" an object when debugging in VS2008, basically I'm working with a WCF service and want to be able to debug my object and waste while I want to see its properties before IIS kills my process.
Is it possible to move the entire object into isolation so I can keep looking at it?
The object is not very large, I only care about its properties, no other calls need to be called.
0
a source to share
1 answer
If you only need to inspect the object and not one step through the application, you can create a memory dump and debug that. Take a look at Debugging Tools for Windows .
0
a source to share