Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumC#IDisposable and finalizersSingle-choice MCQ

Within the standard dispose pattern Dispose(bool disposing), what is the rule for the disposing == false path (called from the finalizer)?

protected virtual void Dispose(bool disposing) { if (disposing) { // ? } // ? }