Guest User

Untitled

a guest
Jan 18th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. Console.SetCursorPosition(x, y);
  2.  
  3. tb.Clear();
  4. string s = "";
  5. for (int i = 0; i < mh; i++)
  6. {
  7. for (int j = 0; j < mw; j++)
  8. {
  9. s += MatrixArray[i, j];
  10. }
  11. s += "n";
  12. tb.Text += s;
  13. }
Add Comment
Please, Sign In to add comment