Checking for Objects that implement IDisposable but aren't properly disposed

Posted by TooFat on Stack Overflow See other posts from Stack Overflow or by TooFat
Published on 2010-04-08T19:41:11Z Indexed on 2010/04/08 19:43 UTC
Read the original article Hit count: 238

Filed under:
|
|

Is there a way to automatically check existing C# source code for instances of objects that are not properly disposed of ie. using try / catch / finally or using statements? Or do I need to just manually look at the code?

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET