To Examples
ClickCounter1 Example, source code file Program.cs
using System; ///
/// ClickCounter1 Example, source code file Program.cs. /// Show number of times Enter key is pressed. ///
namespace ClickCounter1 { public class Program { public static void Main() { int numClicks = 0; Console.WriteLine("Press the return key multiple times."); Console.Write("Press Control-C to terminate the application."); while (true) { Console.ReadLine(); numClicks++; Console.Write("Number of clicks is " + numClicks + "."); } } } }