Last Updated : 11 Jul, 2025
Console.SetCursorPosition(Int32, Int32) Methodis used to set the position of cursor. Basically, it specifies where the next write operation will begin in the console window. The window origin changes automatically to make the cursor visible if the specified cursor position is outside the area that is currently visible in the console window.
Syntax: public static void SetCursorposition(int left, int top); Parameters: left: It is the column position of the cursor. Columns are numbered from left to right starting at 0. top: It is the row position of the cursor. Rows are numbered from top to bottom starting at 0.Exceptions:
// C# Program to illustrate
// Console.CursorPosition() method
using System;
class GFG {
// Main Method
public static void Main()
{
// setting the window size
Console.SetWindowSize(40, 40);
// setting buffer size of console
Console.SetBufferSize(80, 80);
// using the method
Console.SetCursorPosition(20, 20);
Console.WriteLine("Hello GFG!");
Console.Write("Press any key to continue . . . ");
Console.ReadKey(true);
}
}
Output:
When
Console.SetCursorPosition()method is not used:
Reference:RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4