0 votes
in C Sharp by
What is the difference between “dispose” and “finalize” variables in C#?

1 Answer

0 votes
by
Dispose - This method uses interface – “IDisposable” interface and it will free up both managed and unmanaged codes like – database connection, files etc.

Finalize - This method is called internally unlike Dispose method which is called explicitly. It is called by garbage collector and can’t be called from the code.

Related questions

0 votes
asked Oct 18, 2019 in C Sharp by Robin
0 votes
asked Feb 16, 2020 in C Sharp by rahuljain1
...