Can I avoid JIT in .NET?
问题 Say if my code is always going to be run on a particular processor and if I have this information during installation - is there a chance I can avoid JIT? 回答1: You don't have to avoid JIT if you have CPU information at installation. If you compile your modules using the /platform:[x86/x64/IA64] switch, the compiler will include this information in the resulting PE file so that the CLR will JIT the code into the appropriate CPU native code and optimize the code for that CPU architecture. You