What is the difference between dispose() and finalize()?

Asked 7 years ago
Viewed 577 times

0

What is the difference between dispose() and finalize()?


1 Answer


0

The difference between dispose() and finalize():
Generally finalize() and dispose() method is used for releasing the unmanaged resources like files, database connections, etc. But the main difference is that dispose() method is invoked(called) by the user and finalize( ) method is invoked(called) by the garbage collector before the object is destroyed. dispose( ) method is declared as public, but finalize( ) method is declared as private and at the runtime when the destructor is called it  automatically Converted to Finalize method .

Example of dispose() method

public class Test : IDisposable
{
private bool disposed = false;
// dispose method declare
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool disposing)
{
if (!disposed)
{
if (disposing)
{
// clean the managed objects
}
// clean the unmanaged objects
disposed = true;
}
}
}
Example of finalize() method

public class Test : IDisposable
{
private bool disposed = false;
//Implement IDisposable.
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool disposing)
{
if (!disposed)
{
if (disposing)
{
// clean the managed objects
}
// clean the unmanaged objects
disposed = true;
}
}
//At runtime C# destructor is automatically Converted to Finalize method
~Test()
{
Dispose(false);
}
}

answered 6 years ago by Arti Mishra

Your Answer