I read the following paragraph of the Wikipedia article on the CLR:
Alternatively, the CIL code can be compiled into native code in a separate step prior to launch using the Custom Image Generator (NGEN). This speeds up all subsequent software as CIL-to-native compilation is no longer needed.
Does this mean that I can take any .NET program and compile it into a binary file, which can then be run on a computer on which the .NET platform is not installed?
source
share