.Net

Difference between Finalize, Destructor and Dispose in C#

In this very post we are going to see the difference between Finalize, Destructor and Dispose in C#.

Destructor:

Destructor will be written in a class to clean the memory used by the instances of that class. A destructor cannot be explicitly called in C#. It will be called by GC process while collecting the garbage.

They are special methods that contains clean up code for the object. You can’t call them explicitly in your code as they are called implicitly by GC (Garbage Collector). In C# they have same name as the class name preceded by the “~” sign. Like-

class MyClass
{
public MyClass ()
{
}
~MyClass ()
{
}
}

Dispose:

Dispose method Must be called explicitly at any time just like any other method. Contains the code to clean up the Unmanaged code accessed by the object.

These are just like any other methods in the class and can be called explicitly but they have a special purpose of cleaning up the object. In the dispose method we write clean up code for the object. It is important that we freed up all the unmanaged resources in the dispose method like database connection, files etc.

The class implementing dispose method should implement IDisposable which is inherited by interface and it contains GC.SuppressFinalize method for the object it is disposing if the class has destructor because it has already done the work to clean up the object, then it is not necessary for the garbage collector to call the object’s Finalize method.

  • Dispose() is called by the user
  • Same purpose as finalize, to free unmanaged resources. However, implement this when you are writing a custom class that will be used by other users.
  • Overriding Dispose () provides a way for the user code to free the unmanaged objects in your custom class.
  • Dispose method can be invoked only by the classes that IDisposable interface.

Finalize

Finalize Method is the code to clean up the memory used by the class. A finalize method can be called explicitly by using the “objectname.Finalize()” syntax

These all the part of Memory clear opertion in GC.

Finalize () is called by Garbage Collector implicitly to free unmanaged resources. The garbage collector calls this method at some point after there are no longer valid references to the object. There are some resources like windows handles, database connections which cannot be collected by the garbage collector. Therefore the programmer needs to call Dispose() method of IDisposable interface.

  • Implement it when you have unmanaged resources in your code, and want to make sure that these resources are freed when the Garbage collection happens.
  • Finalizers should release unmanaged resources only.
  • Finalizers should always be protected, not public or private so that the method cannot be called from the application’s code directly and at the same time, it can make a call to the base.Finalize method
class MyClass : IDisposable
{
private bool IsDisposed = false;
public void Dispose()
{
Dispose(true);
GC.SupressFinalize(this);
}
protected void Dispose(bool Diposing)
{
if (!IsDisposed)
{
if (Disposing)
{
//Clean Up managed resources
}
//Clean up unmanaged resources
}
IsDisposed = true;
}
~MyClass()
{
Dispose(false);
}
}

 

Shaiv Roy

Hy Myself shaiv roy, I am a passionate blogger and love to share ideas among people, I am having good experience with laravel, vue js, react, flutter and doing website and app development work from last 7 years.

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *

Back to top button