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...

Where does the dispose method lie and how can it be used to
clean up resources?

Answer Posted / rutu

Dispose() is available in System.IDisposable interface.
Microsoft has suggested two methods that can be invoked by
the programmer for the release of resources i.e Close() and
Dispose().
If any of the method is invoked by the programmer before
loosing the reference to an object, care must be taken to
avoid finalze() to be invoked on the same object when it is
garbage collected and we can do this using
GC.SuppressFinalise().

Public Sub Dipose()' or Close()
'write code here to release the resources
GC.SuppressFinalize(Me)
End Sub

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What Is The Difference Between The System.array.copyto() And System.array.clone()?

1076


What are partial classes and use of partial classes?

999


Please explain value types and reference types used in c#?

928


What is the data type for bit in c#?

1017


What are the properties of string?

1016


What is a lambda expression in c#?

1632


How do I create a single-file assembly?

1092


What is difference between array and arraylist in c#?

1009


What are indexers in c# .net?

1010


What is the difference between int16 and int32 in c#?

1002


who is a protected class-level variable available to?

1077


What is difference between value and reference types in C#.NET

1146


Why abstract class can not be instantiated?

932


How to find Percentage, name ,College from a resume or document ? How to export these values to other page in C#?

974


how to sort an array in c#

1066