#424 – The Garbage Collector
October 3, 2011 13 Comments
In C#, you don’t explicitly delete heap-based objects. Instead, the CLR will reclaim memory from objects that are no longer used, by running a Garbage Collector.
The garbage collector (GC) can release memory only for managed objects created on the heap. It’s only job is to release memory. It can’t clean up or release other resources, like file handles or database connections.
The GC will typically perform garbage collection when the amount of available physical memory is becoming too low or when the amount of virtual memory consumed by your application is becoming too large.
You can’t predict when garbage collection is going to happen, or even if it’s going to happen, prior to an application terminating.