How to see JIT-Compiled code in .NET VM (CLR)

后端 未结 3 1441
盖世英雄少女心
盖世英雄少女心 2020-12-01 07:54

How can I have a trace of native code generated by the JIT-Compiler ?

Thanks

3条回答
  •  一整个雨季
    2020-12-01 08:35

    In Visual Studio place a breakpoint in the code and start debugging. When it breaks, open the Disassembly window (Debug > Windows > Disassembly or Alt+Ctrl+D).

提交回复
热议问题