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 ?
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 ?
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?