I am working through the C# e-book. Here is the code for the part I have a question about:
using System.Text;
namespace InteractiveHelloWorld
{
class MainClass
{
static void Main(string[] args)
{
Console.Write("Please enter your name: ");
string name = Console.ReadLine();
Console.WriteLine
("Hello {0}, Good Luck in C#", name);
}
}
}
When I click Start Debugging in Visual Studio 2008, it pops up a command prompt window asking me my name, like it should. But when I type in my name and hit enter, it then displays the next line (Hello Marc, Good Luck in C#) and then
immediately closes.
Is it supposed to close so fast like this? It only displays the second line for like a 10th of a second before closing. I can hardly even read the second line before it closes. Am I doing something wrong or is this normal?
Thanks