Guest User

Untitled

a guest
Jul 18th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. rivate void ScrollRight()
  2. {
  3. for (int iRow = 0; iRow < 14; iRow++)
  4. {
  5. m_arrRows[iRow] = ShiftRight(m_arrRows[iRow]);
  6. }
  7. }
  8.  
  9. private string ShiftRight(string sIn)
  10. {
  11.  
  12. string sFirstboxes = sIn.Substring(0);
  13.  
  14. string sLastBox = sIn.Substring(1,1);
  15.  
  16. return sLastBox + sFirstboxes;
Add Comment
Please, Sign In to add comment