Answer Posted / kirti
Finalize method is used to free the memory used by some unmanaged resources like window handles (HWND). It's similar to the destructor syntax in C#. The GC calls this method when it founds no more references to the object. But, In some cases we may need release the memory used by the resources explicitely.To release the memory explicitly we need to implement the Dispose method of IDisposable interface.
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
When will the .net framework 3.0 be released?
What are Model Binders in ASP.Net MVC?
What is Separation of Concerns in ASP.NET ASP.Net MVC?
Explain the use of Inversion of control (IOC)?
Briefly describe the roles of clr in .net framework?
Define the core components of an ASP.NET MVC application?
What is tempdata?
How we can add the CSS in ASP.Net MVC?
Can I remove .net framework?
Mention what is the difference between “ActionResult” and “ViewResult” ?
Describe the gac in the .net framework.
How to change the action name in ASP.Net MVC?
What is entity framework? : Entity framework
What is a model in programming?
Explain RenderBody and RenderPage in ASP.Net MVC?