I am writing a console application and I need to know, how to write in current line with shift of lines. I try to explain this on the next example: Let It console lines with their numbers and contents along with cursor position.
- Hello!
- This is my command shell.
- Please write something: _
When I call my method for writing in console text "lalala", i want to see that:
- Hello!
- This is my command shell.
- lalala
- Please write something: _
If I use Console.WriteLine method I see the next:
- Hello!
- This is my command shell.
- Please write something: lalala
- _
Please, help me to realise this feature.
