【发布时间】:2014-05-30 02:28:48
【问题描述】:
我有两个非常简单的程序。
这里是1:
static void Main(string[] args)
{
PipeClient client = new PipeClient();
client.Send("Hello World");
client.Send("Hello World 2");
Console.ReadLine();
}
这里是 2
static void Main(string[] args)
{
using (var server = new PipeServer())
{
server.Start();
Console.WriteLine("Press Enter to End");
Console.ReadLine();
}
}
我转到解决方案属性并在常用属性下设置配置,如下所示:
我启动调试器。
两个程序都启动了,现在我想使用 break all 功能,因为我想检查两个程序之一;但是,当我使用全部中断图标时,我只能检查两个项目之一。如果可能,我如何让自己同时查看,如果不能,我如何切换我正在检查的程序?
【问题讨论】:
标签: c# visual-studio debugging