Skip to content

Instantly share code, notes, and snippets.

@ChristianEder
Last active March 16, 2023 12:35
UltimateGuideToProcessManagementNet_08_ReadingOutput
StreamReader outputReader = process.StandardOutput; // Or use process.StandardError to read the error output
string line;
while ((line = outputReader.ReadLine()) != null)
{
Console.WriteLine(line);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment