MSIL debuggers - Mdbg, Dbgclr, Cordbg

拟墨画扇 提交于 2019-11-30 07:34:24

I'm assuming you meant DbgClr not Clt and mdbg not mdbug?

Visual Studio is one you missed, but DbgClr should have the same functionality. http://blogs.msdn.com/andypennell/archive/2005/02/21/377621.aspx.

You can also use windbg with SOS extensions to do managed debugging from Windows debugger. SOS is also helpful when using VS since it lets you inspect memory and so on.

To see source level MSIL debugging, try using ilasm with the /debug option. Last time I checked, VS will let you step through the .il source just like C# or any other language.

MSDN blogs have a ton of content about debugging .NET apps -- I suggest you search further there.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!