C# Finalize/Dispose pattern

Posted by robUK on Stack Overflow See other posts from Stack Overflow or by robUK
Published on 2009-05-22T16:44:45Z Indexed on 2010/03/28 10:03 UTC
Read the original article Hit count: 376

Filed under:

Hello,

C# 2008

I have been working on this for a while now. And I am still confused about some issues. My questions below

1) I know that you only need a finalizer if you are disposing of unmanaged resources. However, if you are using managed resources that make calls to unmanaged resources. Would you still need to implement a finalizer?

2) However, if you develop a class that doesn't use any unmanged resources directly or indirectly and you implement the IDisposable so that clients of your class can use the 'using statement'. Would it be acceptable to implement the IDisposable just so that clients of your class can use the using statement?

using(myClass objClass = new myClass())
{
    // Do stuff here
}

3) I have developed this simple code below to demostrate the Finalize/dispose pattern:

public class NoGateway : IDisposable
{
    private WebClient wc = null;

    public NoGateway()
    {
        wc = new WebClient();
       wc.DownloadStringCompleted += wc_DownloadStringCompleted;
    }


   // Start the Async call to find if NoGateway is true or false
   public void NoGatewayStatus()
   {
       // Start the Async's download
           // Do other work here
       wc.DownloadStringAsync(new Uri(www.xxxx.xxx));
   }

   private void wc_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
   {
       // Do work here
   }

   // Dispose of the NoGateway object
   public void Dispose()
   {
       wc.DownloadStringCompleted -= wc_DownloadStringCompleted;
       wc.Dispose();
       GC.SuppressFinalize(this);
   }

}

Question about the source code:

1) Here I have not added the finalizer. And normally the finalizer will be called by the GC, and the finalizer will call the Dispose. As I don't have the finalizer, when do I call the Dispose method? Is it the client of the class that has to call it?

So my class in the example is called NoGateway and the client could use and dispose of the class like this: Would the Dispose method be automatically called when execution reaches the end of the using block?

using(NoGateway objNoGateway = new NoGateway())
{
    // Do stuff here   
}

Or does the client have to manually call the dispose method i.e.?

NoGateway objNoGateway = new NoGateway();
// Do stuff with object
objNoGateway.Dispose(); // finished with it

Many thanks for helping with all these questions,

2) I am using the webclient class in my 'NoGateway' class. Because the webclient implements the IDisposable interface. Does this mean that the webclient indirectly uses unmanaged resources? Is there any hard and fast rule to follow about this. How do I know that a class uses unmanaged resources?

© Stack Overflow or respective owner

Related posts about c#