From the course: Visual Studio: Advanced Debugging Tools

Unlock the full course today

Join today to access over 22,400 courses taught by industry experts or purchase this course individually.

View memory details

View memory details - Visual Studio Tutorial

From the course: Visual Studio: Advanced Debugging Tools

Start my 1-month free trial

View memory details

- To examine this historic session, I've opened this diagsession file. And you can see my three snapshots. And I can see my timeline, and how my memory was increased, and where my garbage collections were, and all the other things we saw in the live demo. And I can hover over this section of memory, and see how much memory I was using at that point in time. 72.7 megabytes. More interesting details are down in the snapshot, so you've got the heap space, information about the heap space here, and then you got the objects that are in memory. So you can see the objects are increasing over time because I'm adding items to memory. So I start here, looking at the heap, I can see the object types that are in the heap, including this list item. And I can drill in and see information about the different instances of the list items that are in there, and this is something from the UI of the application. From the WPF UI.…

Contents