.NET Basic – Background Garbage collection
Background garbage collection is replaces the concurrent garbage collection in .NET 4.0. It is applicable on desktop garbage collection. But later, it was added for Server Garbage collection too in .NET 4.5. Background garbage collection collect the generation 0 and 1 object while the collection generation 2 is in progress. It uses one or more
Read More