When building a Windows Console App in C#, is it possible to write to the console without having to extend a current line or go to a new line? For example, if I want to sho
\r is used for these scenarios. \rrepresents a carriage return which means the cursor returns to the start of the line.
That's why Windows uses \n\r as its new line marker. \n moves you down a line, and \r returns you to the start of the line.