Writing string at the same position using Console.Write in C# 2.0

Use Console.SetCursorPosition to set the position. If you need to determine it first, use the Console.CursorLeft and Console.CursorTop properties.

Leave a Comment