C# Programming - .NET Framework - Discussion

Discussion Forum : .NET Framework - General Questions (Q.No. 8)
8.
Which of the following .NET components can be used to remove unused references from the managed heap?
Common Language Infrastructure
CLR
Garbage Collector
Class Loader
CTS
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
5 comments Page 1 of 1.

Satya said:   1 decade ago
Garbage Collector runs periodically and identifies the object those which are no longer referenced. so that it will remove the objects from heap memory. Automatic memory management will be done by Garbage Collector in .Net..

Dhiraj Patil said:   9 years ago
Garbage collector remove only unused managed object in heap memory, GC threading background process is continuously running and reclaims the memory.

Vijay kumar rhakur said:   1 decade ago
Garbage collector run periodically and remove the object which are no longer use in heap memory automatically.

Shiva said:   1 decade ago
Garbage collector will identify the un-used reference objects in heap memory and it removes that objects.

Prabha G said:   1 decade ago
Garbage collector will only collect the object and free the memory.

Post your comments here:

Your comments will be displayed after verification.