Changes to Program.cs: Before the while loop, add: `Console.Clear();` `Console.CursorVisible = false;` and replace the `Console.Clear();` in the loop with `Console.SetCursorPosition(0, 0);`
Changes to Program.cs:
Before the while loop, add:
Console.Clear();Console.CursorVisible = false;and replace the
Console.Clear();in the loop withConsole.SetCursorPosition(0, 0);