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

Can abstract class have parameterized constructor?

0 Answers  


How do I create a multi language, multi file assembly?

0 Answers  


Differentiate between the public and private ?

0 Answers   Microsoft,


Is there hashmap in c#?

0 Answers  


what is the purpose of using statement in c#

0 Answers   Cognizant,






Can you prevent a class from being instantiated?

0 Answers  


What is .cs file in c#?

0 Answers  


What do you mean by object pooling?

0 Answers  


Explain the difference between a sub and a function in c#.

0 Answers  


What?s a satellite assembly?

3 Answers   Visual Soft,


What is var c#?

0 Answers  


What?s the difference between System.String and System.StringBuilder classes?

1 Answers  


Categories