using System; namespace Example15 { /// /// Summary description for Class1. /// class Class1 { /// /// The main entry point for the application. /// [STAThread] static void Main(string[] args) { int i = 0; while (i < 10) { Console.WriteLine("i: {0}", i); i++; // i = i + 1; } } } }