2
Reply

What is the difference between “dispose” and “finalize” variables in C#?

Vivek Kumar

Vivek Kumar

9y
1.8k
0
Reply

    dispose releases unmanaged objects while finalise releases all objects

    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.