marcelo
marcelo

Reputation: 235

Need to see the instanced objects in a .net application

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

Answers (1)

mm8
mm8

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

Related Questions