Checking for Objects that implement IDisposable but aren't properly disposed
- by TooFat
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?