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