How to free an object ?

  • Thread starter Thread starter craigkenisston
  • Start date Start date
C

craigkenisston

Hi,

I've read recently some comments regarding one should always release
the objects when they're not longer to be used, regardless they are
going to be recollected by the GC at some point.

So, I have a tiny class library with some utilities, Im descending my
classes directly from Object class.
I can't find nothing like Free/Destroy/Disposes in this classes I'm
creating.

So, what do I need to implement in order to be able to manually dispose
my classes instances ?
 
Back
Top