What do people use to track memory leaks? I managed to check the code to understand some problems, but I am at a loss what can I do next / how will I manage problems when my program gets bigger. I know what type of object I was leaking, but I do not know what supports it.
On Windows.NET, I just run SOS in windbg and with a combination! dumpheap and! gcroot. I could find out what was happening and who made live links to objects that were not collected.
source
share