using System; namespace Example35 { /// /// Summary description for Class1. /// class Class1 { /// /// The main entry point for the application. /// [STAThread] static void Main(string[] args) { int[] numbers = new int[15]; for (int i = 0; i < numbers.Length; i++) { numbers[i] = i; } for (int i = 0; i < numbers.Length; i++) { Console.WriteLine("numbers[" + i + "]=" + numbers[i]); } } } }