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 difference between client-side and server-side validations in webpages?
What is round trip in asp.net?
What is aspect-oriented programming?
Which property is used to identify the Page is Post Back in ASP.NET?
i want to implement grid view value in paypal site. so how to create this code in asp.net with C#
How does the service stream content?
What are the new login controls in asp.net 2.0?
What is view state and how it works in asp net?
What are the merits and demerits of viewstate?
what are the web form events available in asp.net?
What is asp.net globalization?
What is the difference between session object and application object?
What are the types of session in asp.net?
How do we implement bundling in MVC?
What is the significance of proxy user?