Created
April 19, 2026 19:04
-
-
Save CostaFot/ec3f2243f2ee1e5482611f263126b28d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| process.Start(); | |
| string stdout = process.StandardOutput.ReadToEnd(); | |
| string stderr = process.StandardError.ReadToEnd(); | |
| process.WaitForExit(); // do NOT move this above the reads |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment