What is Dispose method in .NET?

Answers were Sorted based on User's Feedback



What is Dispose method in .NET?..

Answer / susant

The GC call the Finalize () function automatically to
destroy the object called implicit destroy. When you want
to destroy a objects that you think no longer need and free
it from memory, then we will use the dispose function. For
better
Performance we will use the dispose function explicitly.


The Dispose method in .NET belongs to IDisposable interface
and it is best used to release unmanaged objects like File
objects, Windows API objects, Database connection objects,
COM objects etc from the memory. Its performance is better
than the finalize() method.

Is This Answer Correct ?    9 Yes 0 No

What is Dispose method in .NET?..

Answer / bhasker

The Dispose method may be called on any instance of any type implementing the IDisposable interface. This is supported by the C# using statement which makes calling Dispose automatically easy.

Is This Answer Correct ?    0 Yes 0 No

What is Dispose method in .NET?..

Answer / mkm

dispose method is last method excuted in c# program

while finally will excute after the try block

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More C Sharp Interview Questions

Why do we need properties in c#?

0 Answers  


How many kinds of elements an array can have?

0 Answers  


What is c# commonly used for?

0 Answers  


What is xaml in c#?

0 Answers  


What is iqueryable?

0 Answers  


How do I open the console?

0 Answers  


How?s method overriding different from overloading?

2 Answers   Visual Soft,


How do you declare an arraylist?

0 Answers  


What is a delegate? How can it works?

0 Answers   Siebel,


Explain the OOPS concept in C#?

0 Answers   HCL,


Can you specify an access modifier for an enumeration?

0 Answers  


What does namespace mean?

0 Answers  


Categories