Console Application - Stop and await input

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am wanting to stop my console application and see the information which has
been written to the console at a certain point in my program. I have seen
people do some sort of keyboard prompt when the application is awaiting some
key from the keyboard to proceed further. I do not recall how to construct
this instruction. I know it is very simple,, but I just can not remmeber....
 
Jim,

You should just be able to make a call to the ReadLine method on the
Console object, and it will prompt for input from the user.

Hope this helps.
 
Back
Top