I've seen many answers showing how to implement Dispose
on both Base and Derived (ie like this).
I am however not sure about the case where I'm deriving from Base
which implements IDisposed
but my Derived
have no resources of it's own that need disposing.
In this scenario do I still need to override Dispose
at all ?