Interface containing a delete function. Often combined with IVerifiable.
Function for deallocating memory. Should be called in destructor.
class A : IDisposable { ~this() { dispose(); } public void dispose() { // Delete Native Stuff } }
See Implementation
Interface containing a delete function. Often combined with IVerifiable.