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();
|
|
Most programming books will tell you to use Console.ReadKey() to pause the console, but is there a better alternative?
|
||||||||||
|
|
|
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 |
||||||
|
|
|
Absurd thing if you are trying to use to suspend the execution of your program as it with c/cplusplus with getch or something. |
||
|
|
|
|
How about Console.ReadLine() :) |
||
|
|