Difference between background and concurrent garbage collection?

Posted by marco.ragogna on Stack Overflow See other posts from Stack Overflow or by marco.ragogna
Published on 2010-04-06T08:57:24Z Indexed on 2010/04/06 12:13 UTC
Read the original article Hit count: 296

I read that with .NET Framework 4 the current garbage collection implementation is replaced:

The .NET Framework 4 provides background garbage collection. This feature replaces concurrent garbage collection in previous versions and provides better performance.

At this page there is an explanation how it works but I am not sure I understood it.

In practical world application what is the benefit of this new GC implementation? Is it a feature that could be use to push for a transition from 3.5 or previous to 4.0?

© Stack Overflow or respective owner

Related posts about .net-4.0

Related posts about garbage-collection