Reputation: 263
I was trying to find some simple overview but found nothing. So I hope someone will help me here. I would like to know what is the flow of compilation/assembly process in .NET. I just know:
1)The code is compiled into CIL
2)
3)
...
4) Executable binaries
Upvotes: 1
Views: 320
Reputation: 273169
There exists a tool NGEN.exe to pre-compile the MSIL but it is only used in special cases.
Upvotes: 4