I have built an application using Visual Studio .NET and it works fine. After the application is used for more than 2-3 hours it starts to get slow and I don't know why. I have used GC.Collect(); to get memory leak problems but now I have the new one.
Does anyone know a solution?
|
|
||||
|
|
If you really have a memory leak, just calling If you do not cleanup your objects properly, the GC will not collect anything. When handling with memory consumptions, you should strongly consider the following patterns:
|
|||||
|
|
Try a memory profiler, such as the ANTS Memory Profiler. First you need to understand what's going on, then you can think about how to fix it. http://www.red-gate.com/products/dotnet-development/ants-memory-profiler/ |
|||
|
|