If we not suppress finalize method in dispose what will happen?
Answers were Sorted based on User's Feedback
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 |
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 |
How will you load dynamic assembly? How will create assemblies at run time?
Explain the .net framework.
What is Jit compilers?.how many are available in clr
Why should we go for entity framework?
How can Bitwise OR operator reresents in .Net?? To which alias name a variable points to if it is declared as "int" variable??
what is entityclient?
Will c# 3.0, vb.net 9.0, atlas, or linq be included in the .net framework 3.0?
Can you use Razor code in Javascript in ASP.Net MVC?
What are the advantages of asp.net mvc?
unit test done by tetser on development team?
Is .net framework backwards compatible?
What is serialization in .NET? What are the ways to control serialization?