Tagged Questions

116
votes
2answers
2k views

Is this object-lifetime-extending-closure a C# compiler bug?

I was answering a question about the possibility of closures (legitimately) extending object-lifetimes when I ran into some extremely curious code-gen on the part of the C# compiler (4.0 if that ...
74
votes
14answers
5k views

Anatomy of a “Memory Leak”

In .NET perspective: What is a Memory Leak? How to understand whether your application leaks? What are the effects? How to prevent a memory leak? If your application has memory leak, does it go away ...
47
votes
6answers
7k views

Large Object Heap Fragmentation

The C#/.NET application I am working on is suffering from a slow memory leak. I have used CDB with SOS to try to determine what is happening but the data does not seem to make any sense so I was ...
29
votes
2answers
2k views

What causes memory fragmentation in .NET

I am using Red Gates ANTS memory profiler to debug a memory leak. It keeps warning me that: Memory Fragmentation may be causing .NET to reserver too much free memory. or Memory ...
28
votes
12answers
7k views

What strategies and tools are useful for finding memory leaks in .NET?

I wrote C++ for 10 years. I encountered memory problems, but they could be fixed with a reasonable amount of effort. For the last couple of years I've been writing C#. I find I still get lots of ...
24
votes
17answers
14k views

Memory Leak in C#

Is it ever possible in a managed system to leak memory when you make sure that all handles, things that implement IDispose are disposed? Would there be cases where some variables are left out?
18
votes
2answers
465 views

.NET Memory issues loading ~40 images, memory not reclaimed, potentially due to LOH fragmentation

Well, this is my first foray into memory profiling a .NET app (CPU tuning I have done) and I am hitting a bit of a wall here. I have a view in my app which loads 40 images (max) per page, each ...
18
votes
4answers
4k views

Weak event handler model for use with lambdas

OK, so this is more of an answer than a question, but after asking this question, and pulling together the various bits from Dustin Campbell, Egor, and also one last tip from the ...
17
votes
2answers
10k views

Memory Leaks in C# WPF

I could use some advice on tracking down the cause of memory leaks in C#. I understand what is a memory leak and I get why they occur in C# but I'm wondering what tools/strategies have you used in the ...
15
votes
7answers
11k views

Not enough storage is available to process this command in VisualStudio 2008

When I try to compile an assembly in VS 2008, I got (occasionally, usually after 2-3 hours of work with the project) the following error Metadata file '[name].dll' could not be opened -- 'Not enough ...
15
votes
11answers
9k views

Is a memory leak created if a MemoryStream in .NET is not closed?

I have the following code: MemoryStream foo(){ MemoryStream ms = new MemoryStream(); // write stuff to ms return ms; } void bar(){ MemoryStream ms2 = foo(); // do stuff with ms2 ...
13
votes
2answers
535 views

.NET JIT Code Cache leaking?

We have a server component written in .Net 3.5. It runs as service on a Windows Server 2008 Standard Edition. It works great but after some time (days) we notice massive slowdowns and an increased ...
12
votes
4answers
922 views

Why and How to avoid Event Handler memory leaks?

I just came to realize, by reading some questions and answers on StackOverflow, that adding event handlers using += in C# (or i guess, other .net languages) can cause common memory leaks... I have ...
12
votes
12answers
1k views

How to detect where a Memory Leak is?

I have a large website that seems to be sucking up all the memory that is being allocated. There is nothing else on the server beside this site. Within a week it eats away the 2 gigs and requires a ...
11
votes
4answers
866 views

Memory Leak when using DirectorySearcher.FindAll()

I have a long running process that needs to do a lot of queries on Active Directory quite often. For this purpose I have been using the System.DirectoryServices namespace, using the DirectorySearcher ...
11
votes
3answers
561 views

.NET Framework - Possible memory-leaky classes?

Just the other day I was investigating a memory leak that was ballooning the app from ~50MB to ~130MB in under two minutes. Turns out that the problem was with the ConcurrentQueue class. Internally, ...
10
votes
5answers
2k views

How to research unmanaged memory leaks in .NET?

I have a WCF service running over MSMQ. Memory gradually increases over time, indicating that there is some sort of memory leak. I ran the service locally and monitored some counters using PerfMon. ...
10
votes
6answers
625 views

Release resources in .Net C#

I'm new to C# and .NET, ,and have been reading around about it. I need to know why and when do I need to release resources? Doesn't the garbage collector take care of everything? When do I need to ...
10
votes
2answers
5k views

WPF CreateBitmapSourceFromHBitmap memory leak

I need draw an image pixel by pixel and display it inside a WPF. I am attempting to do this by using a System.Drawing.Bitmap then using CreateBitmapSourceFromHBitmap to create a BitmapSource for a ...
10
votes
18answers
3k views

How to avoid Memory Leaks?

What are some tips I can use to avoid memory leaks in my applications? Are there any gotchas or pitfalls that I can look out for?
10
votes
4answers
3k views

Simple WPF sample causes uncontrolled memory growth

I have boiled down an issue I'm seeing in one of my applications to an incredibly simple reproduction sample. I need to know if there's something amiss or something I'm missing. Anyway, below is the ...
9
votes
4answers
801 views

Using WeakReference to resolve issue with .NET unregistered event handlers causing memory leaks

The problem: Registered event handlers create a reference from the event to the event handler's instance. If that instance fails to unregister the event handler (via Dispose, presumably), then the ...
8
votes
1answer
149 views

XAML Button not garbage collected after eliminating references

I wrote a test program wherein a single Button is defined in XAML as the content of a Window. Upon the window's loading, the Button is programmatically replaced as the window's content, and the field ...
8
votes
5answers
290 views

Prevent memory leaks in WPF

Working with WinForms you have to free memory after using gdi objects, event handlers, objects from native code, etc. In WinForms I used to remove for example event handlers in the dispose method. ...
8
votes
5answers
265 views

IDisposable implementation - What should go in 'if (disposing)'

I have been fixing some memory leak issues in a winforms application and noticed some disposable objects that are not Disposed explicitly (developer hasn't called Dispose method). Implementation of ...
8
votes
10answers
395 views

Is it possible to have a memory leak in managed code? (specifically C# 3.0)

For instance if I have a hierarchical data structure: class Node { public List<Node> children; } and it is populated to many levels down then in one of the parents go: ...
8
votes
6answers
2k views

Best way to track down a memory leak (C#) only visible on one customer's box

What is the best way to track down a memory leak that is only found on one customer's test/release box, and no where else?
7
votes
4answers
293 views

Heap memory problems

There's a WCF self hosted service that must work 99% of time. Sometimes we got some memory troubles like this: But service is working as usual after that issues. How can we manage this? Any tips ...
7
votes
5answers
577 views

very large string in memory

I am writing a program for formatting 100s of MB String data (nearing a gig) into xml == And I am required to return it as a response to an HTTP (GET) request . I am using a StringWriter/XmlWriter to ...
7
votes
4answers
2k views

How can I prevent CompileAssemblyFromSource from leaking memory?

I have some C# code which is using CSharpCodeProvider.CompileAssemblyFromSource to create an assembly in memory. After the assembly has been garbage collected, my application uses more memory than it ...
7
votes
4answers
993 views

Identify IDisposable objects

i have to review a code made by some other person that has some memory leaks. Right now i'm searching the disposable objects to enclause them with the using statement and i would like to know if there ...
6
votes
2answers
197 views

ObjectContext is leaking memory for detached entities

I already checked this using a memory profiler and there are no real entities which stay in memory but hash-sets, dictionaries and EntityKey objects -- but I found no way how to disconnect these ...
6
votes
1answer
169 views

Processing big strings, Is this Large Object Heap Fragmentation?

I have a .NET 3.5 Application A function is running a million times It's doing search & replace & regex operations in 1MB+ strings (different sized strings) When I profile the application ...
6
votes
2answers
255 views

Allocation and deallocation of memory in unmanaged code using platform Invoke (C#)

I want to allocate and deallocate memory in unmanaged code (C++) and we call them functions from managed code (C#). Iam not sure whether the following code is fine without memory leaks or not? C# ...
6
votes
3answers
241 views

C# - Method of programmatically attempting to check for memory leak in block of code

I'm trying to see how feasible it is to attempt to accurately determine that there is a potential memory leak in a block of managed .NET code programmatically. The reason to do this would be to ...
6
votes
1answer
454 views

Impersonation memory leak

On http://msdn.microsoft.com/en-us/library/w070t6ka(v=VS.100).aspx there is an example on how to do impersonation with .net 4.0. We have used this example in a class that inherits IDisposable for ease ...
6
votes
4answers
453 views

C# Event Based Memory Leaks

I have an application which has some memory leaks due to events not being detached before an object reference is set to null. The applicaiton is quite big and its difficult to find the memory leaks by ...
6
votes
7answers
681 views

CLR out Of Memory Exceptions

We are getting a lot of out of memory exceptions and we cant seem to diagnose what is happening. It seems to be an issue that happens that will spike memory usage from 300 megs to over a Gig in a ...
6
votes
3answers
393 views

C# Memory leak, tracking techinques and tools

The app I am writing is suffering quite dramatically from a memory leak. Pretty much the entire object model is staying in memory when a user closes down a loaded project. The way I know this is ...
6
votes
4answers
2k views

C# How to unsubscribe all event handlers from a given event?

Is there a simple way to iterate all over the handlers subscribed to a given event? my problem is that clients subscribe but forget to unsubscribe so a memory leak happens. I need a way for an object ...
6
votes
3answers
1k views

How to detect memory leaks in C# application?

How to detect memory leaks in C# application? What tools need to use? What best practices do you know?
6
votes
2answers
936 views

Unmanaged leak in a trivial WPF application

I've run into a situation where I'm leaking unmanaged memory when the mouse is moved over my WPF app. Specifically, when I profile the application in perfmon or Red Gate's memory profiler, the ...
6
votes
3answers
1k views

.NET Remoting Singleton memory leak, TCP, Marshal by Reference

I am using the simplest example of remoting that I could find, sharing an object between a windows service and a windows forms program (client), running on the same machine. The service instantiates ...
6
votes
3answers
3k views

C# Explicitly Removing Event Handlers

I was wondering if setting an object to null will clean up any eventhandlers that are attached to the objects events... e.g. Button button = new Button(); button.Click += new ...
6
votes
10answers
5k views

Is using StringBuilder Remove method more memory efficient than creating a new StringBuilder in loop?

In C# which is more memory efficient: Option #1 or Option #2? public void TestStringBuilder() { //potentially a collection with several hundred items: string[] outputStrings = new string[] { ...
5
votes
6answers
108 views

Will disposable object clone cause memory leak in C#?

Check this code: .. class someclass : IDisposable{ private Bitmap imageObject; public void ImageCrop(int X, int Y, int W, int H) { imageObject = imageObject.Clone(new Rectangle(X, ...
5
votes
4answers
129 views

ASP.NET Pages not removed from memory

I've been having really bad memory problems with an ASP.NET Application. It seems as if every time the page loads, the old previous instance of the page is not removed from memory. If you press F5 ten ...
5
votes
2answers
186 views

Long running windows service with a memory leak? Or just looks like one?

This sounds a little odd, but I'm not sure if my process has a memory leak or not, and I was hoping to get some information. I was recently assigned an investigation into why a windows service in ...
5
votes
3answers
378 views

Image.RotateFlip leaking memory :/

Although I have been programming for about 11 years(mostly VB6, last 6 months C#), it's THE first time to actually ask a question :) I have found all my answers from teh interwebz but this issue i ...
5
votes
6answers
667 views

WPF memory leak

I have a simple wpf application. In main window i have stack panel and 2 buttons. First button adds 100 my user controls (without any data bindings, events, bitmaps), and second removes all of them ...

1 2 3 4 5 6