0 votes
in Dot Net by
What is the difference between dispose() and finalize() in Dotnet?

1 Answer

0 votes
by

Although Dispose and Finalize both methods are used by CLR to perform garbage collection of runtime objects of .NET applications but there is a difference between them.

The Finalize method is called automatically by the runtime while the Dispose method is called by the programmer.

...