Answer Posted / sayeed
Garbage collection is an in deterministic process Associated
with CLR. It is used to release the managed free Objects
that are no more refrenced.
But there might be scenarios in which we need to release
certain resources held by an object (like a database
connection) once the object is no longer in use.
We have destructors in C#.C# destructors are nothing but
finalize methods in disguise, with a call to base class's
finalize method.
As we know, finalize method is called during garbage
collection by garbage collector. Hence, we cannot rely only
on C# destructors to explicitly release resources as
finalize methods on objects may never be called altogether
(if the program terminates abnormally) or might be called
only when the program terminates (in a normal way).
Hence it is always a good practice to implement IDisposable
interface in such cases and to write code to release
resources explicitly in the Dispose() method.In that case we
have to use GC.SuppressFinalize() method.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is application session?
Will the asp.net validators run in server side or client side? How do you do client-side validation in .net? How to disable validator control by client side javascript?
What are session and cookies?
Define cookie.
Difference between application events and session events
Explain the differences between managed and unmanaged code?
How to use a Master Database in Asp.net?
What are the advantages and disadvantages of session?
Are xaml file compiled or built on runtime?
What are the Types of objects in ASP
How response object is related to asp's response object?
What are ASHX files?
Can you explain composite pattern?
Explain the difference between inline and code behind - which is best in?
Explain what benefit does your code receive if you decorate it with attributes demanding specific security permissions?