Reputation: 21
I would like to use directly the .NET JIT Compiler, is it possible ?
I mean, I would like to do a thing like :
?> jit.exe myfile.msil myfile.exe
Or in a c# code ?
Upvotes: 2
Views: 328
Reputation: 1500665
I think what you're looking for is roughly ngen.
Note that although this generates native code:
IMO, ngen is usually not appropriate... what are you trying to do?
Upvotes: 3