网络程序拦截
我正在开发一个使用 TCPListener 和 TCPClient 的网络项目。我的程序有两个几乎相同的实例在两台不同的计算机上运行,但由于某种原因,其中一个实例工作正常,而另一个实例在某处阻塞。
我想知道是否有任何方法可以调试内部到底发生了什么。问题是断点不起作用,因为它们只显示一个线程的执行,而不显示其他任何内容。我尝试暂停程序,它向我显示了 Application.Run (...) 行,但我无法进入。
调试这是一场噩梦,任何建议将不胜感激。
下午
I am working on a network project which uses TCPListener and TCPClient. I have two almost identical instances of my program running on two different computers, but for some reason one of the instances works fine while the other one blocks somewhere.
What I'm wondering is if there is any way to debug what exactly is going on inside. The problem being that breakpoints don't work since they just show the execution of one thread and nothing else. I tried Pausing the program and it shows me the line Application.Run (...) and I have no way of getting in.
Debugging this is a nightmare, and any advice would be appreciated.
PM
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Visual Studio 的工具栏中,有一个包含线程的下拉列表。您可以使用它在暂停执行后切换到另一个线程中的当前停止点。
MSDN:如何:在调试时切换到另一个线程
In the toolbar of Visual Studio, you have a dropdown list with the threads. You can use this to switch to the current halting point in another thread after pausing the execution.
MSDN: How to: Switch to Another Thread While Debugging