2

I've been trying to work on a program that renders text into a certain area on the command line. I have no idea how to do this. Basically, the user is going to choose a width and a height. I was wanting to use that data to put the text in a certain area of the screen. If you know how to do this please tell me.

Patrick Klug
  • 14,056
  • 13
  • 71
  • 118

1 Answers1

0

You can pick where the next Console.Write command writes to, by setting the cursor position via the Console.SetCursorPosition method.

Patrick Klug
  • 14,056
  • 13
  • 71
  • 118