/post/2021-05-06-why-reflection-is-slow/
https://42jerrykim.github.io/post/2021-05-06-why-reflection-is-slow/ post 2021 05 06 why reflection is slow post 2021 2021 05 06 why reflection is slow index.md
MethodTable data are split into “hot” and “cold” structures to improve working set and cache utilization. MethodTable itself is meant to only store “hot” data that are needed in program steady state. EEClass stores “cold” data that are typically only needed by type loading, JITing or reflection. Each MethodTable points to one EEClass.