Guest User

Untitled

a guest
Oct 24th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. public void Write(byte[] data)
  2. {
  3. if (_subprocess == null) return;
  4.  
  5. _stdin.Write(data);
  6. _stdin.Flush();
  7. }
Add Comment
Please, Sign In to add comment