Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

If we not suppress finalize method in dispose what will happen?

Answer Posted / seema dalal

Dispose methods can be called automatically, if client
forget to call it.
for this ,Call the Dispose method in Finalize method and in
Dispose method suppress the finalize
method using GC.SuppressFinalize. Below is the sample code
of the pattern. This is the
best way we do clean our unallocated resources and yes not
to forget we do not get the hit
of running the Garbage collector twice.

Public Class ClsTesting
Implements IDisposable
Public Overloads Sub Dispose()Implements IDisposable.Dispose
' write ytour clean up code here
GC.SuppressFinalize(Me)
End Sub

Protected Overrides Sub Finalize()
Dispose()
End Sub
End Class

Is This Answer Correct ?    0 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is asp net framework?

1018


What is the purpose of a web form?

1064


How do you assign a value to a complex number 7 how has exception hand changed in .net framework 4.0?

986


Explain test driven development (tdd) ?

1072


Can you explain model, controller and view in mvc?

1045


What are the main components of .net framework?

1092


Explain Sections is ASP.Net MVC?

1190


What are Scaffold templates in ASP.Net MVC?

1120


How we can handle the exception at controller level in ASP.Net MVC?

1163


How to return the JSON from action method in ASP.Net MVC?

1287


What is viewbag title?

993


The order of the filters that get executed, if the multiple filters are implemented?

1083


i just want to write an exam regarding .net?plz give me information about taking a test?where to pay 4 d exam,exam centre?

2276


Why we need a separate mobile project template, while we can render our web application in mobile ?

1199


Which .net framework is installed?

1014