What is Dispose method in .NET ?
Answer Posted / prashant patil
A type's Dispose method should release all the resources
that it owns. It should also release all resources owned by
its base types by calling its parent type's Dispose method.
The parent type's Dispose method should release all
resources that it owns and in turn call its parent type's
Dispose method, propagating this pattern through the
hierarchy of base types.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is a dimensional array?
What is response redirect in c#?
What is main thread in c#?
What is var c#?
What is pure abstract class in c#?
What is Garbage Collection in .Net?
What are controls in c#?
What is a jagged array?
What is different between Boxing and Unboxing?
What are the concepts of dispose method?
Is 0 an unsigned integer?
What does void do in c#?
What is the advantage of static class in c#?
Difference between abstract classes and interfaces
Why generics are used in c#?