Samir Bhogayta
Can you declare a C++ type destructor in C# like ~MyClass()?
By Samir Bhogayta in C# on Jun 25 2016
  • Samir Bhogayta
    Jun, 2016 25

    Yes, but what’s the point, since it will call Finalize(), and Finalize() has no guarantees when the memory will be cleaned up, plus, it introduces additional load on the garbage collector. The only time the finalizer should be implemented, is when you’re dealing with unmanaged code.

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS