I'm investigating a memory leak issue in our Silverlight application, and found an object that is supposed to be cleaned up at the end but is still alive. This object contains lots of data and takes like 25MB of memory which is not released.
After doing some reference cleaning, I ended up with this
I googled around but could not find a way to clean up this reference from ManagedObjectReference. Is it supposed to be there and how do I clean it up so the object gets garbage collected? The application was built using Silverlight and CSLA.Net
