msil
n.
Microsoft Intermediate Language 微软中间语言。它是一种介于高级语言和基于Intel的汇编语言的伪汇编语言。当用户编译一个。Net程序时;
编译器将源代码翻译成一组可以有效地转换为本机代码且独立于CPU 的指令。当执行这些指令时;
实时(JIT)编译器将它们转化为CPU特定的代码。由于公共语言运行库支持多种实时编译器;
因此同一段MSIL代码可以被不同的编译器实时编译并运行在不同的结构上。;
例句:
-
MSIL is subsequently JIT - compiled, just before execution, into native machine code.
MSIL随后 恰好在执行前被实时(JIT)编译成本机代码.
-
Code bytes - byte representations of the actual machine or MSIL instructions.
代码字节 — 实际计算机或MSIL指令的字节表示形式.
-
Intermediate Language ( MSIL ) files, which the CLR then executes.
中间语言 ( msil ) 文件, 其中的CLR,然后执行.