What is the Difference B/W Finalize() and Dispose() in .Net?
Answer Posted / sreeram pavan
Both are ways to destroy the object. By object i mean when
you have some unmanaged resources used in your class, you
have to make sure that you write the logic to destroy them
in the finalize() method. But this is the implicit way of
destroying the unmanaged resources, as finalize is called by
garbage collector when it find thats there is no reference
to this object from the stack.
There is an explicit way to destroy the unmanaged resources.
That is by implementing IDisposable interface. By
implementing this interface, ie you have to write the code
to destroy the resource in Dispose() method, you can call
the object to destroy itself when ever required in your code.
| Is This Answer Correct ? | 51 Yes | 5 No |
Post New Answer View All Answers
What is the difference between application state and session state in asp net?
In a page I have gridview with options of select and delete using hyperlink when I am selecting any one of then it has to open another page how can it?
Which is faster viewdata or viewbag?
Why is this service branded with windows livetm?
What is http request and response?
Explain how dot net compiled code will become platform independent?
Where is http session stored?
Why is it preferred to not use finalize for clean up?
What is dynamic web page with example?
How do we ensure view state has not tampered?
What is the difference between custom web user control and a custom web server control?
What is Pre-Render event in ASP.NET?
What is the viewstate in asp.net?
What is server transfer?
How to change Master page in ASP.Net using code?