Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JIT 如何知道在哪里寻找 csc.exe?此外,其他 .NET 语言(如 IronRuby)如何处理这个问题?
csc.exe 生成 IL 代码。JIT 从 IL 代码生成机器代码,如果我错了请纠正我,但我认为 JIT 与 csc.exe 没有任何关系
csc.exe将 C# 源代码编译为 MSIL。JIT 编译器是 CLR 的一部分并在 中实现mscorjit.dll,它位于当前的 CLR (2.0 atm) 中。
csc.exe
mscorjit.dll