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

Define Final Class in C#

0 Answers   HCL,


how to stored and retrive video in Sql server using asp.net c#......?

0 Answers   Sans Pareil IT Services,


Can you access a hidden base class method in the derived class?

0 Answers  


What is piller of OOPS in C#.

10 Answers  


What is a dictionary in c#?

0 Answers  






Is datetime nullable c#?

0 Answers  


int a = '3' + '4'; char n = (char)a; What will be answer of n?

4 Answers  


the c# keyword .int. Maps to which .net type?

0 Answers   Siebel Systems,


Are tuples mutable c#?

0 Answers  


What is string method in c#?

0 Answers  


What is different between Implicit conversion and Explicit conversion in C#?

0 Answers  


Is array passed by reference in c#?

0 Answers  


Categories