I have written a simple program in C# in Visual Studio 2013. At the end of my program I instruct the user to:
"Please Press Enter to Exit the Program."
I would like to get the input from the keyboard on the next line and if ENTER is pressed, the program will quit.
Can anyone tell me how I can achieve this function?
I have tried the following code:
Console.WriteLine("Press ENTER to close console......");
String line = Console.ReadLine();
if(line == "enter")
{
System.Environment.Exit(0);
}
Console.ReadLine()
doesn't solve the problem? What do you need? – Septicemia