I\'m studying C# by following the guides in MSDN.
Now, I just tried the Example 1 (here is the link to MSDN), and I\'ve encountered an i
To simplify what others are saying: Use Console.ReadKey();.
Console.ReadKey();
This makes it so the program is waiting on the user to press a normal key on the keyboard
Source: I use it in my programs for console applications.