0
what can we put in a destructor?
Besides sending out a message, as the course example shows, what else can we or need to be put in a destructor?
3 ответов
+ 1
Thanks for your reply, Rob. You are right, but freeing the memory is executed automatically by the destructor. I want to know what else can we do within the definition of a destructor.
+ 1
Not if you manually allocate the memory. I haven't done that much with c#, but you should be able to do this.
0
Most important one is probably deallocating memory.