How to check memory usage in Visual Studio?

2

I'm recently developing an asp.net mvc 5 project.

When I call a view, the RAM expires to 0MB. There the PC works.

When RAM returns to normal, it shows page view.

Can anyone tell me if a Visual Studio exists this tool to detect memory consumption, see who makes it deplete memory.

    
asked by anonymous 19.12.2016 / 22:40

1 answer

7

Visual Studio has a specific window for diagnostics called Diagnostic Tools . That among other monitoring functions, shows the amount of memory used by the application.

Whenever you run your project by pressing F5 , it should appear automatically.

You can also make it appear by accessing Debug > Windows > Show Diagnostic Tools or by pressing Ctrl + Alt + F2

    
19.12.2016 / 23:18