Arrays and collections / Arrays

using System;

int count = 15;
int[] arInt = new int[count];
arInt[0] = 1;

Console.WriteLine(arInt[0]);