Advertisement
dereksir

Untitled

Dec 5th, 2023
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.26 KB | None | 0 0
  1. //..
  2.  
  3. {
  4.     process.StartInfo.UseShellExecute = false; // Don't use the operating system shell
  5.     process.StartInfo.RedirectStandardOutput = true; // Redirect standard output
  6.     process.StartInfo.CreateNoWindow = true; // Don't create a window for the process
  7.    
  8.     //..
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement