Hi @AnkiIt_wizard5 ,
The Process.StandardOutput Property gets a stream used to read the textual output of the application.
The issue might relate the procStartInfo, please check the executable file or document which used to start the process, make sure it has the textual output.
For example:
Create a Console application and have a textual output:
namespace Write500Lines
{
public class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}
Then use Process to get the output, the result as below:
If the answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
Best Regards,
Dillion