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

1 Answer

0 votes
by
Finalize – This method is used for garbage collection. So before destroying an object this method is called as part of clean up activity.

Finally – This method is used for executing the code irrespective of exception occurred or not.
...