Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 VB.NET 程序中使用 Debug.WriteLine()。我可以在 Visual Studio 的“输出”窗口中看到调试语句,但在 DebugView 中看不到。
我什至尝试了以下方法:
将 DebugView 与 .NET 一起使用教程
有什么建议么?
如果您使用的是 .Net Framework 4.0 或更高版本,那么这是设计使然。调试应用程序时,输出Debug.WriteLine将发送到调试器,但不会发送到 DebugView 应用程序。
Debug.WriteLine
由于 Visual Studio 调试器的一些体系结构细节,这在 4.0 中发生了变化。它变成了真正的原生调试器,调试视图无法通过原生调试器拦截消息