C#: How do you add a destructor to a custom made class? -


How can you add a destructor to a custom built class created in C # so that it does not need to be deleted, Read

when it is not needed.

But you can consider implementing IDisposable which usually provides a more elegant solution. Visit for more information.


Comments