Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

cursor position c#

int maxKolom = Console.WindowWidth - 1;
for (int i = 0; i < 10; i++) {
    Console.SetCursorPosition(i, i);
	Console.Write("");
    Console.SetCursorPosition(maxKolom - i, i);
	Console.Write("/");
}
Source by newbedev.com #
 
PREVIOUS NEXT
Tagged: #cursor #position
ADD COMMENT
Topic
Name
9+6 =