What is the best way to detect memory leaks in c# .net ?
We are trying to find the cause of memory leaks on an application thats already installed and runing on a server
So visual studio profiler is not an option.
I worked with valgrind on linux, its a tool that actualy showed me, for example, the file names and line numbers in the code where i initialized the variables that are never disposed of..
however, valgrind only works on linux,
Are there good tools like that for .net ?