Writing a .NET Garbage Collector in C#: A NativeAOT Adventure

2025-02-26
Writing a .NET Garbage Collector in C#: A NativeAOT Adventure

This article details the author's attempt to write a .NET garbage collector in C# using NativeAOT. While the resulting GC isn't production-ready, the process offers valuable insights into the inner workings of the .NET GC. The author encountered linker conflicts and explored multiple workarounds, ultimately resolving the issues by renaming exported functions and using an msbuild target to modify the definition file. This is a valuable read for .NET developers facing similar challenges.

Development