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?

Answers were Sorted based on User's Feedback



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

Answer / answerme

If we do not suppress finalize method in dispose, the
finalise method will be called twice by the garbage
collector. Once the method that is called by the developer
and once when the GC runs for checking the object that are
out of scope. This hampers the performance and is heavy on
performance.

Is This Answer Correct ?    2 Yes 0 No

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

Answer / 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

More Dot Net Framework Interview Questions

Tell me about the internal working of Garbage collector?

3 Answers   Honeywell,


mention what is csdl, ssdl and msl sections in an edmx file?

0 Answers   Microsoft,


What are Action Methods in ASP.NET MVC?

0 Answers  


What are the Main Features of .NET platform

1 Answers  


Explain how you can implement Ajax in MVC?

0 Answers  


How does the 'page lifecycle' of asp.net mvc works?

0 Answers  


What is the use .glimpse in mvc?

0 Answers  


Describe the gac in the .net framework.

0 Answers  


Mention two instances where routing is not implemented or required?

0 Answers   Infosys,


What is the difference between windows vista and .net framework 3.0 ?

0 Answers  


I want to fetch data from datareader. i have three tables in datareader. i want to bind my two table with datagrid, then i want to fetch a value from my third table. do u have any idea pls help me. we use dr.nextresult() for multiple tables.

0 Answers  


Can I customise the serialization process

1 Answers  


Categories