kumikill
3/23/2016 - 1:34 PM

Prompts the user to press any key to continue the program in the console.

Prompts the user to press any key to continue the program in the console.

void PressAnyKey()
{
    Console.WriteLine("Press any key to continue.");
    Console.ReadKey();
}