'Run Multiple Console apps in separate windows

I have a console application that runs another console application:

static void Main(string[] args)
{
    using (var p = new Process())
    {
        p.StartInfo.FileName = $"path to another console app";
        p.Start();
    }
}

I need to start the second console app in another window, but currently, it will run the second one inside the main console app and will show the text inside the main app.

How to start other console apps in a new window?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source