1

当我在 VS 2010 中通过调试启动 Silverlight 4 和 5 应用程序时,我可以在客户端项目以及为应用程序提供服务的服务器项目中设置断点。

然而,在浏览器外运行应用程序(即配置应用程序浏览器外并将其设置为启动项目)时,调试器将不再连接到服务器,尽管服务器项目仍将正确启动.

有没有办法解决这个问题?

4

1 回答 1

1

您可以在要中断的位置设置 Launch 或 Break 语句。

// Will launch a debugger once and will break once
System.Diagnostics.Debugger.Launch();

//Will launch a debugger and break any time the code is hit
System.Diagnostics.Debugger.Break();
于 2012-06-17T06:04:05.030 回答