在 Visual Studio 中调试框架代码
这篇文章是(http://blogs.msdn.com/sburke/archive/2008/01/16/configuring-visual-studio-to-debug-net-framework-source-code.aspx)仍然是从 Visual Studio 调试框架代码的首选方法吗?或者有什么改变吗?
Is this post (http://blogs.msdn.com/sburke/archive/2008/01/16/configuring-visual-studio-to-debug-net-framework-source-code.aspx) still the preferred method for debugging framework code from visual studio? Or has anything changed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一种方法。另一种方法是使用即将推出的 .NET Reflector Pro,它允许反编译框架并通过它进行调试。提供免费测试版。
第一种方法的优点是您可以获得带注释的实际源代码。第二种方法的优点是,即使 Microsoft 没有提供您感兴趣的部分的源代码,您也可以调试框架代码。
This is one way. The other way is using the upcoming .NET Reflector Pro that allows decompiling the framework and debugging through it. A free beta is available.
The first way has the advantage that you get the actual source code with comments. The second way has the advantage that you can debug framework code even if Microsoft does not provide the source for the part you are interested in.
从 Visual Studio 2008 开始,您的问题的答案分别是“是”和“否”。
As of Visual Studio 2008, the answers to your question are yes and no, respectively.