What Is Garbage Collector?

1) In CLR, Garbage collector serves as a memory manager what it means like it do automatic memeory managment.
2) It enable you to develop your application without worry about memory managment no need to free memory.
3) It allocates your object on managed heap.
4) It reclaims that object which no longger needed,it clear theirs memory and make memory avilable for future allocations.

Comments