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: enter image description here

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"

enter image description here


Comments

Popular posts from this blog

c++ - OpenCV Error: Assertion failed <scn == 3 ::scn == 4> in unknown function, -

php - render data via PDO::FETCH_FUNC vs loop -

The canvas has been tainted by cross-origin data in chrome only -