Reputation: 2273
I have a wpf application that is leaking memory...is there a way to detect and fix these leaks using just visual studio without using any of the profiling tools? Or are there any free ones that I could use to detect and fix them? Thaks
Upvotes: 2
Views: 9498
Reputation: 101042
Have a look at this answer, which provides some links with useful information.
You'll basically need the SOS debugger extension.
Upvotes: 1
Reputation: 72636
You can investigate memory leak only for application written in C++ in Visual Studio, take a look here at the official documentation ...
Upvotes: 1
Reputation: 39277
Scitech's memory profiler has a free trial period and is an excellent tool for investigating memory consumption issues.
Upvotes: 1