Writing a .NET Garbage Collector in C#? – ?Part 2 (Kevin Gosse) minidump.net
In the first part, we prepared the project and fixed an initialization issue caused by the NativeAOT toolchain. In this second part, we’re going to start the implementation of our GC. The target for now is to build the simplest possible GC that can run basic .NET applications. This GC will only allocate memory and never free it, similar to Konrad Kokosa’s bump-pointer GC.
Report Story
Leave Your Comment