Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to avoid massive memory leaks on WPF on .Net 3.5?

Tags:

.net-3.5

wpf

When I run my app targeted to .Net 3.5 it has massive memory leaks. 50mb every time I assign a UserControl to a local ref. I only ever create one instance of each UserControl. If I compile and run the same code targeted to .Net 4.0 everything runs fine hovering around the 50mb mark.

Is this a known isue with 3.5? I.e. it's not usable in prod?

/My clients only have 3.5 and won't be moving to 4.0 for awhile so i don't have the easy option

like image 300
DayTwo Avatar asked Nov 01 '10 18:11

DayTwo


1 Answers

Memory Leak Hotfixes for WPF 3.5 SP1
http://www.infoq.com/news/2010/06/WPF-Memory-Leaks

In particular, have a look at these two hotfixes, which have been fixed in .NET 4.0, but are available as hotfixes to users of .NET 3.5:

http://support.microsoft.com/kb/967634

http://support.microsoft.com/kb/967328

like image 122
Robert Harvey Avatar answered Sep 28 '22 03:09

Robert Harvey