I wanted to use Console.ReadLine();
in the previous line and make it display like that:
HeresomeText>(input)
Not like
HeresomeText>
(input)
Is it possible to do?
use Write method instead of WriteLine Method:
Console.Write("HeresomeText> ")
in addition you can use SetCursorPosition:
Console.SetCursorPosition(int left, int top);