Is there any IL level debugger in form of a VS plugin or standalone application?
Visual studio’s debugger is great, but it allows you to debug on either HLL code lev
The best way to do this is to use ILDASM to disassemble the managed binary, which will generate the IL instructions. Then recompile that IL source code in debug mode using ILASM, when you fire up the Visual Studio debugger you will be able to step through the raw IL.
ildasm foo.exe /OUT=foo.exe.il /SOURCEilasm foo.exe.il /DEBUGI've written a blog post about this topic at: How to debug Compiler Generated code.