M Rahman

M Rahman

  • NA
  • 46
  • 4.6k

Difference Between Finalize and Dispose

Apr 20 2018 11:24 PM
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)