Guest User

Untitled

a guest
May 25th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. ProcessStartInfo t = new ProcessStartInfo();
  2. t.CreateNoWindow = true;
  3. t.FileName = name;
  4. t.Arguments = args;
  5. t.UseShellExecute = false;
  6. t.CreateNoWindow = true;
  7. t.RedirectStandardOutput = true;
  8. t.RedirectStandardError = true;
  9.  
  10. Process p = new Process();
  11. p.StartInfo = t;
  12. p.Start();
Add Comment
Please, Sign In to add comment