How do I run Console.Write() on every new line?

How would I go about running Console.Write() on every new line?

Note that I do not want to use Console.WriteLine() because I still want to take input from that line.

Add Comment
1 Answer(s)

Use Console.Write("\nInput your text here:");

\n in strings starts prints to a new line.

Answered on July 16, 2020.
Add Comment

Your Answer

By posting your answer, you agree to the privacy policy and terms of service.