Understanding .NET compilation
Advertisements As far as I understand .NET concepts, the source code is first translated into an Assembly (IL code+meta data), which is compiled to machine code on the target machine with the CLR’s JIT compiler. However I cannot really match these concepts to what I see when working on a C# project. When I build… Read More Understanding .NET compilation