What is Dispose method in .NET?
Answers were Sorted based on User's Feedback
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 |
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 |
Why do we need properties in c#?
How many kinds of elements an array can have?
What is c# commonly used for?
What is xaml in c#?
What is iqueryable?
How do I open the console?
How?s method overriding different from overloading?
How do you declare an arraylist?
What is a delegate? How can it works?
Explain the OOPS concept in C#?
Can you specify an access modifier for an enumeration?
What does namespace mean?