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 the significance of proxy user?
What is the purpose of url encoding?
What is viewstate information stored?
Explain significance of routing? : asp.net mvc
What is a session in asp.net?
Is asp.net outdated?
Differentiate strong typing and weak typing
when a request is made in Life cycle of ASP.NET page .
What are navigation controls? How many navigation controls are there in ASP.NET 4.0?
What is the exact purpose of http handlers?
What language is asp.net written in?
Where sessions are stored?
What is a master page and what does it do?
What is redirecting behavior?
How does ASP.NET framework maps client side events to Server side events.?