I wanted to use Console.ReadLine(); in the previous line and make it display like that:
Console.ReadLine();
HeresomeText>(input)
Not like
It depends on your previous Console.WriteLine() statement. Change it to Console.Write() which does not have the linebreak.
Console.WriteLine()
Console.Write()
static void Main(string[] args) { Console.Write("HeresomeText>"); Console.ReadLine(); }