As an example:
Console.ReadLine();
Console.WriteLine("What are you waiting for?");
How would I get anything after Console.ReadLine(); to execute before an input is received?
To give background/ be more specific I've been trying to make a breakout game in command-line and I can't figure out how to allow the ball to process without the paddle moving. So if there is some specific way to allow key inputs while other things are processing that would work wonders too.