What is the Difference B/W Finalize() and Dispose() in .Net?
Answer Posted / rajkumar
If we want to delete resources(objects) those are not using,
u should not worry about that GC implicit y call Finalize()
method and remove all such object but if u want to delete
object forcefully(The large obj u want to delete after
completely task) then u can explicity call Dipose() method.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
what is the difference between response.write() and response.output.write()?
What are the new web part controls in asp.net 2.0 ?
What is the usie of activex control in .net?
Where can I get information on cookies in asp.net?
What is comparevalidator?
What is the usage of DelegatingHandler?
What are the differences between the response.write() and response.output.write()?
How to make sure that contents of an updatepanel update only when a partial postback takes place (and not on a full postback)?
What are the built-in objects in asp.net?
Which method is used to enforce garbage collection in .net?
Explain how asp.net different from asp?
code for "For every 5days system has to create 1text file with the corresponding date and it has to store in c-drive" by using web applications
What does postback mean?
Explain the code Access Security (CAS) in .net Framework?
I have an external link in my application say www.xyztest.com. Today this site works on http protocal. Tommorow it may run on https. So i cant hardcore the protocal in the site. When a user clicks on the link how can i know if the external site works on http or https and takes him to that place?