Microsoft 中间语言 (MSIL) 
用作许多编译器的输出和实时 (JIT) 编译器的输入的语言。公共语言运行库包括用于将 MSIL 转换为本机代码的 JIT 编译器。

解决方案 »

  1.   

    Microsoft Intermediate Language (MSIL)用ILDASM.EXE打开一个 .net的.exe 或.dll
    可以看到类似汇编的代码
    .method public hidebysig instance bool  Post(int32 accountNum,
                                                 float64 amount) cil managed
    {
      .custom instance void [System.EnterpriseServices]System.EnterpriseServices.AutoCompleteAttribute::.ctor() = ( 01 00 00 00 ) 
      // Code size       6 (0x6)
      .maxstack  1
      .locals init ([0] bool CS$00000003$00000000)
      IL_0000:  ldc.i4.0
      IL_0001:  stloc.0
      IL_0002:  br.s       IL_0004
      IL_0004:  ldloc.0
      IL_0005:  ret
    } // end of method Account::Post