Shark_M wrote:Hi guys,
I just wanted to know , how to detect memory leaks in your C# or vb or C++ application using Visual Studio 2005?
If you have a server application that is mutlithreaded, and is using 10 threads to process client connections and requests, but over time the overall operating system performance becomes degraded , and becomes slow, and needs a reboot. would this constitute a memory leak?
Using the .NET Profiler API might be a good starting point.
If you don't want to change your code, you can also run your application using the CLR profiler and watch the memory usage as you use features of your application.