.NET:如何使用 JIT 编译器
我想直接使用.NET JIT编译器,可以吗?
我的意思是,我想做这样的事情:
?> jit.exe myfile.msil myfile.exe
或者在 ac# 代码中?
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 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您正在寻找的大致 ngen 。
请注意,尽管这会生成本机代码:
IMO,ngen 通常是不合适的......你想做什么?
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?