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
Is asp.net and .net are same or different?
How you can stop the validation of ASP.NET controls from client side?
What is redirectpermanent in asp.net?
If we remove web.config or machine.config from the application then, is this application will works?
What is the use of placeholder control? Can we see it at runtime?
What is caching? Explain.
Define secured sockets layer.
Explain about the .NET framework?
Why session management is required?
How do I use a proxy server when invoking a web service?
Explain how do you deploy your asp.net application?
What is the difference between page directive include and action tag include?
What are the file extensions for razor views?
What is the difference between pathparam and queryparam?
What is difference between mvc and asp.net? : Asp.Net MVC