What is the use of finalize and dispose eventhough garbage
collector is working?
Answers were Sorted based on User's Feedback
Answer / chinmay shah
We can perform finalize opertaion Immediately after
completing the work and same with dispose also while in
case of garbage collector it will dispose the object, until
it feels they are not in use.
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / bharani
Finalize method is actually a the destructor for the
mananged objects, but if you want to destruct an unmanaged
object dispose method allows the programmer to make
explicit calls such as destroywindow to the destruct the
unmanaged object.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / chaitanya
It is advisable not to use the finalize and Dispose
methods,because garbage collector takes Care of the objects
that Should be Disposed.We should use Finalise and Dispose
methods when working with resources in the network or
working with the unmanaged code.
| Is This Answer Correct ? | 3 Yes | 1 No |
Can you handle all button click events at once in a form? Give coding.
i have done enough testing in life but now stated developing intereset in development work,Can i think of entering into development work that too in >Net after more then 4 years of testing experiece?
what are background threads? give ex?
What is conceptual model? : Entity framework
How route table has been created in ASP.NET ASP.Net MVC?
If background completes its processing will it wait for foreground threads?
What is .net framework used for?
What is entitytypes? : Entity framework
What is filters in web api?
Explain tempdata in asp.net mvc?
VIEWS WITH SYNTAX AND EXAMPLE IN SQL
When using razor views, do you have to take any special steps to protect your asp.net mvc application from cross site scripting (xss) attacks?