Define Dispose() - DOT.NET

Define Dispose().

- It is a method for releasing resources that an object acquires.
- The dispose method is called by the destructor.
- It helps to release unmanaged resources used by your application.
- It is provided by the 'Idisposable' Interface.
Garbage collection manages reclamation of unused memory in .NET - DOT.NET
CLR performs garbage collection on small objects and large objects separately....
How garbage collection deals with circular references - DOT.NET
Circular referencing issue happens when two objects refer to each other....
What is break mode? What are the options to step through code? - DOT.NET
When changes are made to the code in an application, the way to be able to view how those changes have changed the way of execution is Break Mode....
Post your comment