I start a Console Application via ProcessStartInfo and process.Start(). I want to hide the black window. Here\'s my code:
string output = \"\"; //Setup the
Process p = new Process(); .... p.StartInfo.CreateNoWindow = true; p.Start();