You should always call Dispose()
on any class implementing IDisposable
(or put it inside a using
statement) and not base your decision on its internal implementation. The class author already made that decision for you by implementing the IDisposable
interface.