Possible Duplicate:
Finalize vs Dispose
Hi,
Recently I was quizzed in an interview about finalize and dispose. When is each one of them used and how is Garbage Collector related to them. Kindly share links to enlighten more on the topic.
Kindly share …
Thanks in advance.
Finalizers are run by the Garbage Collection before an object that is eligible for collection is reclaimed.
Dispose()is meant for cleaning up unmanaged resources, like network connections, files, handles to OS stuff, &c. It works best in conjunction with theusingblock where the compiler makes sure thatDispose()will be called immediately once you are done with an object – and also ensures that you cannot work with the object anymore once it’s disposed.Note that finalizers don’t have to run, so relying on that can be dangerous:
Careful also with the precise time when an object becomes eligible for collection. Read the article linked above – it’s neither scope (a weird word which has noting to do with the lifetime of an object – it’s “the region of program text in which it is legal to refer to [a named entity] by its unqualified name.”) nor is it strictly reference counting as an object can become eligible for collection even before the last reference to it goes away.