c# - How do you specify which program you want to stop in visual studio? -
i got 2 programs pretty simple programs.
here 1:
static void main(string[] args) { pipeclient client = new pipeclient(); client.send("hello world"); client.send("hello world 2"); console.readline(); }
here 2
static void main(string[] args) { using (var server = new pipeserver()) { server.start(); console.writeline("press enter end"); console.readline(); } }
i go solution properties , under common properties set configuration this:
i start debugger.
both programs start, want use break functionality because want inspect 1 of 2 programs; however, when use break icon, can inspect 1 of 2 projects. how allow myself view both if possible , if not how toggle program i'm inspecting?
this source says "on debug location toolbar, choose process view process list box. select process want designate current process. switch between processes"
Comments
Post a Comment