1
Answer

Difference Between Finalize and Dispose

M Rahman

M Rahman

6y
1.2k
1
Both uses to perform garbage collection of run-time objects of .NET applications.
The finalize method is automatically fired by runtime and dispose method call by the programmer,
both are uses for the memory releases.disposable method is implemented of IDispsable interface.
finalize implicitly call but dispose explicitly call. 
 
Answers (1)