vote up 3 vote down star

Can Visual Studio 2008 be configured to give me a warning when I forget to dispose an object that implements IDisposable?

flag

57% accept rate

4 Answers

vote up 2 vote down check

Visual Studio, by itself does not have this feature, but with CodeRush you can have design time warnings and refactorings to insert using blocks where needed.

link|flag
1  
ReSharper will do this as well. – John Saunders Jul 6 at 19:14
CodeRush Xpress is even available FOR FREE: devexpress.com/Products/Visual_Studio_Add-in/… – marc_s Jul 6 at 20:20
FxCop and Genderme will do this as well (both free) – Paco Jul 6 at 20:22
vote up 1 vote down

I don't think it can be done at compile time.

however, it can be done at runtime.
I have created an abstract class 'Disposable' (which implements IDisposable, and implements the Disposable pattern). In the finalizer, I issue an Assert when the finalizer is called, and the object has not been disposed.

I've based this on an article of Ian Griffiths:

http://www.interact-sw.co.uk/iangblog/2004/04/26/yetmoretimedlocking

link|flag
I would argue against having a base class for handling disposal. Since .NET is single-inheritance, this locks you in to a very strict inheritance chain that requires your DisposeBase to be at the top. – Rex M Jul 6 at 19:13
besides that you could just use "System.ComponentModel.Component" – Matthew Whited Jul 6 at 19:26
vote up 0 vote down

I'm not sure if you're using C# or VB, but in C#, the "best practice" way to handle objects of type IDisposable is to place the code in a using block.

"The using statement allows the programmer to specify when objects that use resources should release them. The object provided to the using statement must implement the IDisposable interface. This interface provides the Dispose method, which should release the object's resources." - MSDN Link

HTH,

-Dan

link|flag
2  
This doesn't in any way answer the question. – Joe White Jul 6 at 19:19
Can Visual Studio 2008 be configured to give me a warning if I create an object that implements IDisposable, and then forget to enclose it within a using block? – ChrisW Jul 6 at 19:28
vote up 1 vote down

If you turn on FxCop Design rules it will tell you when you don't implement IDisposable and you have members which implement IDisposable, like this:

class Program
{
    private DataTable NotDisposed;

    public Program()
    {
        NotDisposed = new DataTable();
    }
    static void Main()
    {
    }
}
link|flag
FxCop is great for this kind of stuff. 'course it would be nice if visual studio actually warned you if you made a mistake using (or implementing IDisposable), but heck. – Eamon Nerbonne Jul 20 at 12:29

Your Answer

Get an OpenID
or

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