Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. using System;
  2.  
  3.  
  4. namespace EspacioNombre
  5. {
  6. public class ManejoPantalla
  7. {
  8. public static int origFil;
  9. public static int origCol;
  10.  
  11. public static void gotoxy(string s, int x, int y)
  12. {
  13. try
  14. {
  15. Console.SetCursorPosition(origCol + x, origFil + y);ç
  16. Console.Write(s);
  17. }
  18. catch(ArgumentOutOfRangeException e)
  19. {
  20. Console.Clear();
  21. Console.WriteLine(e.Message);
  22. }
  23. }
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement