Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. private void CheckForCompletion(PID pid)
  2. {
  3. _transfers.Remove(pid);
  4.  
  5. var remaining = _transfers.Count;
  6. //... write status to console.
  7.  
  8. if (remaining == 0)
  9. {
  10. //... output results
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement