C# Console - How to ReadLine() without a new line? ( or undo a \n or a vertical \b)
问题 I want to know if it is possible to get back to the last line when I'm at the beginning of the next line? (in C# Console, of course) I mean Console.WriteLine() cause going to the next line and I want to stay in my line even after pressing enter. (And I think there isn't another way to ReadLine without going to the next line , is there?) I found that Console.SetCursorPosition() can be useful, like below: int x, y; Console.WriteLine("Please enter the point's coordinates in this form (x,y):");