How to analyse program's memory usage in Visual Studio 2010?

19,892

There are commercial tools such as ANTS Memory Profiler or .NET Memory Profiler or dotTrace. Secondly, take a look at this MSDN article. Lastly, Maoni Stephens has many blog posts on garbage collection and memory management in .NET. They are all linked here.

Share:
19,892
Ying Chan
Author by

Ying Chan

Updated on June 14, 2022

Comments

  • Ying Chan
    Ying Chan almost 2 years

    Is there a way to check what memory has been allocated to in a program coded in VS 2010? I've been noticing that a recent program I've been making keeps using more and more memory over time without releasing any.

    Also, are there any articles on code design that teaches you good memory management? I seem to be searching the wrong terms on google as I keep getting useless results.