What does base.Finalize() i.e. System.Object.F inalize exactly do internally when overrided by the class destructor?
Garbage Collection
Collapse
X
-
Tags: None
-
You normally call the base.FunctionNa me in the derived class function to call the base Class version of function...
Finalize is used to clean up unmanaged resources....Yo u should implement a destructor to achieve the Finalize method functionality .... -
Garbage Collection: Automatic Memory Management in the Microsoft .NET Framework
This might be helpful.....Comment
Comment