vote up 0 vote down star
2

Possible Duplicate:
doubts regarding Memory management in .net

I'm reading about Memory management in C# from the book "Professional C#"

The presence of the garbage collector means that you will usually not worry about objects that you no longer need; you will simply allow all references to those objects to go out of scope and allow the garbage collector to free memory as required. However, the garbage collector does not know how to free unmanaged resources (such as file handles, network connections, and database connections). When managed classes encapsulate direct or indirect references to unmanaged resources, you need to make special provision to ensure that the unmanaged resources are released when an instance of the class is garbage collected.

When defining a class, you can use two mechanisms to automate the freeing of unmanaged resources.

  1. Declaring a destructor (or finalizer) as a member of your class.
  2. Implementing the System.IDisposable interface in your class.

I didn't understand few things:

  1. "unmanaged resources (such as file handles, network connections, and database connections)". Whats the big deal about them? How come they are unmanaged? (or) Why can't GC managed these resources?

  2. What code would we place in finalizer or Dispose() method of the a class and what exactly that code would look like? Some examples using these resources, would be of lot of help.

flag

Why are you asking twice? stackoverflow.com/questions/1688222/… – Stefan Steinegger Nov 6 at 15:20
my browser crashed. I didn't think it was posted. So, asked again. But since its answered twice I'm not sure which one to delete. – claws Nov 6 at 15:26

closed as exact duplicate by Luke, Stefan Steinegger, Jason Punyon, Sinan Ünür, Mark Seemann Nov 6 at 15:22

2 Answers

vote up 0 vote down

Unmanaged resources are handles to resources owned and controlled by the operating system (other than memory of course).

The GC doesn't clean up memory immediately at the point that there are no longer any references to an object - it may leave it for a long time. If it did this with files, network and graphics handles it would potentially take up a lot of operating resources and only release them occassionaly.

In order to release these unmanaged resources back to the operating system you need to explicitly release them by disposing them. Hence the use of IDisposable and the using keyword.

link|flag
vote up 0 vote down

Unmanaged resources are unmanaged simply because the garbage collector doesn't know how to manage them. The GC's job is to free memory by "forgetting" managed objects which are no longer accessible - but if you "forget" a network connection or a file handle, it stays open. This is a problem if the unmanaged resource (for instance, a file handle) has been opened by an object which the GC clears up - it stays open and you have a resource leak.

You can solve this problem by having your class implement the IDisposable interface. The Dispose() method takes care of freeing up any unmanaged resources held by the class - calling Close() on a Mutex it's instantiated, for instance. Crucially, you need to call Dispose() yourself - the GC doesn't do it for you. Wrapping usage of your class in a using block is a nice way to guarantee this.

You can place unmanaged disposal code in your finalizer, which is called by the GC, but this isn't advisable - the GC doesn't run unless there is a need to relieve memory pressure, which means that if you rely on code in a finalizer to release unmanaged resources, they could be held open for a long time.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.