It seems that there's no interface of read barrier in CoreCLR.
Recently I have implemented a pauseless GC in C. Here's my project: https://github.com/LizBing/Uboa-Garbage-Collector I tried customing a standalone GC library which can be used in .net. As we all know, one of the most important parts of a pauseless GC algorithm is the read barrier. However, I couldn't find any interface I can implement to reach my target. What do you suggest?