c# - garbage collection -


If an object has a final method, but still the object is referenced, does the trash garbage object be stacked Removes or simply clears unmanaged resources

In GC NET does not automatically clean unmanaged resources. This is what IDisposable is finalized will not be called until all references are required.

Comments