31. How the .NET Runtime loads a Type (www.mattwarren.org)
It is something we take for granted every time we run a .NET program, but it turns out that loading a Type or class is a fairly complex process. So how does the .NET Runtime (CLR) actually load a Type? If you want the tl;dr it’s done carefully, cautiously and step-by-step Ensuring Type Safety One of...