Native Code

You cant, directly. You cant make an entirely win32 executable file with .NET. There is a tool, ngen, which can compile all the IL in to win32 code and cache it, but it wont be stored in the application itself. This step is usually performed as a post-install task, and is usually unnecessary.
 
Back
Top