Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. using (StreamReader reader = process.StandardOutput)
  2. {
  3. string result;
  4. string recipe;
  5. while ((result = reader.ReadLine()) != null)
  6. {
  7. if (result.Contains("Recipe:"))
  8. {
  9. recipe = reader.ReadLine();
  10. }
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement