Difference between dispose and destructor?
Answers were Sorted based on User's Feedback
Answer / nitin
Unused unmanaged resources are removed by dispose method
and It is called manually
Destructor is used to released unused managed resources and
it is called automatically by the Garbase Collector
Is This Answer Correct ? | 21 Yes | 3 No |
Answer / vimala
the dispose() method is used to remove the unused resources
from the memory.
whereas the destructor () method is used to deallocate the
allocated memory by the constructor() method.
Is This Answer Correct ? | 6 Yes | 1 No |
Answer / penchal das
Dispose()is a method which is used to deallocate the unused
resources.
Destructor() is a method which is called when an object was
destroyed.
Is This Answer Correct ? | 2 Yes | 1 No |
What is the difference between read and readline in c#?
What is type cast in C#?
0 Answers TryTechnicals Pvt Ltd,
Explain About remoting and web services. Difference between them
Is c# int immutable?
What is stringbuilder c#?
What is writeline in c#?
What is the difference between c and c# programming?
What are the types of access modifiers?
Is void a class?
C# called c sharp why?
What are virtual methods? How are they used?
What is thread safe in c#?