[Solved] Press space bar to continue


You can loop reading characters until space:

Console.WriteLine("a sentence");
while (Console.ReadKey(true).KeyChar != ' ') ;
       
Console.WriteLine("another sentence");
while (Console.ReadKey(true).KeyChar != ' ') ;
      
Console.WriteLine("etc");

Alternatively you can create a method that comprises the while statement and call it instead.

solved Press space bar to continue