I have a C# console application (A). I want to execute other console app (B) from within app A (in synchronous manner) in such way that B uses the same command window. When
You can start another process using the Process.Start() call. The examples here show how to read output from other process and wait for it to finish.
Process.Start()