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.
Use Console.Write("\nInput your text here:");
\n in strings starts prints to a new line.