in a Console C# program, is there any method which can send the cursor to a point in console window? for example
System.foo.gotoxy(10,20);
System.Console.Write("hello);
will write hello in row 10, column 20?
System.foo.gotoxy(10,20);
System.Console.Write("hello);
will write hello in row 10, column 20?
|
|
|
Console.SetCursorPosition(5,10);
Quote
Quote
0 members, 1 guests, 0 anonymous users