You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All types implementating IDisposable should follow the Dispose pattern, including a finalizer calling Dispose(false) to handle local unmanaged resources.
The text was updated successfully, but these errors were encountered:
As finalizers have no guarantee of call order, it should only be used for freeing manually allocated resources - Not pass the call to the Dispose of a owned managed object. However, all Dispose paths should call GC.SuppressFinalize(this) as per CA1816.
All types implementating
IDisposable
should follow the Dispose pattern, including a finalizer callingDispose(false)
to handle local unmanaged resources.The text was updated successfully, but these errors were encountered: