2
Reply

Can you declare a C++ type destructor in C# like ~MyClass()?

Jul 14, 2006
8.1k
0

    YES . but we should not use it generally ..

    Akash Varshney
    September 29, 2015
    0

    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.

    July 14, 2006
    0