Reputation: 235
I'm struggling with a Wpf application, using the Apex MVVM framework. I suspect instantiation problems. How can I see the instanced objects in the running app?
Upvotes: 1
Views: 207
Reputation: 169320
You could for example use the Windows Debugger (WinDbg) and its !dumpheap –stat
command to list the objects on the heap.
Please refer to Tess Ferrandez's blog post for more information: https://blogs.msdn.microsoft.com/tess/2005/11/25/dumpheap-stat-explained-debugging-net-leaks/
Upvotes: 1