Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. index++;
  2. index %= list.Count;
  3.  
  4. ++index %= list.Count;
  5.  
  6. index = (index + 1) % list.Count;
  7.  
  8. index = (index + 1) % list.Count;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement