vote up 2 vote down star

Most programming books will tell you to use Console.ReadKey() to pause the console, but is there a better alternative?

Console.WriteLine("Press any key to continue.");
Console.ReadKey();
flag

Why? What's wrong with ReadKey()? – Otto Allmendinger Jul 25 at 15:17
There could be some overhead. – M4dRefluX Jul 25 at 15:17
2  
Tell us your concerns. I think you're worrying over nothing. – Brian Jul 25 at 15:19
No worrying. Just wondering if there's a function or whatever that's specifically used to pause the console. – M4dRefluX Jul 25 at 15:22

3 Answers

vote up 10 vote down check

You haven't actually told us what you wish to achieve.

If you wish to stop the output until the user chooses to continue, then you're not really going to get much better than just waiting for a key to be pressed using Console.ReadKey. If you just want to pause the output for a certain amount of time, you can use the Thread.Sleep method, which doesn't require any human invtervention.

link|flag
Right on the money. – JoshJordan Jul 25 at 15:27
Actually, was just waiting for a key to be pressed. Thanks, this answers my question. – M4dRefluX Jul 25 at 15:27
Fair enough, I guess! – IRBMe Jul 25 at 15:34
vote up 0 vote down

Absurd thing if you are trying to use to suspend the execution of your program as it with c/cplusplus with getch or something.

link|flag
vote up 0 vote down

How about Console.ReadLine() :)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.