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?

Answers were Sorted based on User's Feedback



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

Answer / mohan kumar e.

The dispose method is available in System.IDisposable
interface.If you want to provide cleanup mechanism then
implement this interface and provide the definition for
dispose() method.

Is This Answer Correct ?    2 Yes 0 No

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

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

More C Sharp Interview Questions

What is asp net c#?

0 Answers  


Is there a way to force garbage collection?

0 Answers  


User's session is explicitly killed by which method ?

0 Answers   Siebel,


Can you inherit multiple interfaces?

3 Answers  


What standard types does c# use?

0 Answers  


What is boxing & unboxing?

0 Answers  


Can you have an array of arrays?

0 Answers  


What is an iqueryable in c#?

0 Answers  


Describe how a .net application is compiled and executed

0 Answers  


What is a multicast delegate in c#?

0 Answers  


Explain the Abstract class in c#.net

0 Answers  


What is jit? What are the different types of jit?

0 Answers  


Categories