Activity overview
Latest activity by koger
Hmm.. after searching for a long time, I stumpled apon an object which is an root object. Examing the code, I don't really think this is the real cause of the leak. Here is a summary of the code:
public class AccordionPaneAdapter : IGroup
{
private static readonly Dictionary<AccordionPane, IGroup> paneGroups = new Dictionary<AccordionPane, IGroup>();
private readonly AccordionPane pane;
public AccordionPaneAdapter(AccordionPane pane)
{
this.pane = pane;
Debug.Assert(!paneGroups.ContainsKey(pane));
paneGroups.Add(pane, this);
}
... / comments
Hmm.. after searching for a long time, I stumpled apon an object which is an root object. Examing the code, I don't really think this is the real cause of the leak. Here is a summary of the code:
p...
How to profile ASP.Net memory leak
Hello
I'm trying ANTS profiler to see if it can help me. I have an ASP.Net website, that leaks memory. I found out by looking at the Windows Task Manager and saw that the memory usage just keep ris...